/* ============================================
   CS SERVIÇOS - ENERGIA SOLAR
   Stylesheet Principal
   ============================================ */

/* === RESET E VARIÁVEIS === */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --branco-neve: #FFFFFF;
    --azul-oceano: #035A85;
    --dourado-solar: #F9D423;
    --cinza-medio: #6C757D;
    --azul-soft: #E3F2FD;
    --preto: #1a1a1a;
    --cinza-claro: #f8f9fa;
    --sombra: rgba(0, 0, 0, 0.1);
    --sombra-forte: rgba(0, 0, 0, 0.2);
    --transicao: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

/* Feedback do Formulário */
.form-message {
    padding: 15px;
    margin-top: 15px;
    border-radius: 4px;
    font-weight: 500;
    text-align: center;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--preto);
    background: var(--branco-neve);
    overflow-x: hidden;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 30px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transicao);
}

/* === HEADER E NAVEGAÇÃO === */
.header {
    background: var(--branco-neve);
    box-shadow: 0 2px 10px var(--sombra);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Overlay para menu mobile */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    transition: opacity 0.3s ease;
}

.menu-overlay.active {
    display: block;
}

.navbar {
    padding: 1.2rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    flex-shrink: 0;
    margin-right: 3rem;
}

.logo img {
    height: 70px;
    width: auto;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    color: var(--azul-oceano);
    font-weight: 600;
    font-size: 1.05rem;
    padding: 0.8rem 0;
    position: relative;
    white-space: nowrap;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--dourado-solar);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--dourado-solar);
    transition: width 0.3s;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.btn-nav {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    background: var(--azul-oceano);
    color: var(--branco-neve) !important;
    padding: 0.85rem 2rem !important;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.05rem;
    line-height: 1;
    margin-top: 2px;
    /* Desce o balão levemente para alinhar com os outros links */
}

.btn-nav:hover {
    background: var(--dourado-solar);
    color: var(--azul-oceano) !important;
    box-shadow: 0 4px 15px var(--sombra);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    position: relative;
    width: 40px;
    height: 40px;
}

.menu-toggle span {
    width: 26px;
    height: 3px;
    background: var(--azul-oceano);
    transition: all 0.3s ease;
    border-radius: 2px;
    display: block;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* === HERO SECTION === */

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Vídeo de Fundo */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

/* Overlay escuro */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    /* Ajuste a opacidade */
    z-index: 1;
}

/* Container e Conteúdo */
.container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 4rem 0;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-title .highlight {
    color: var(--dourado-solar);
    font-size: 4rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--dourado-solar);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* === BOTÕES === */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transicao);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: transparent;
    border-color: var(--dourado-solar);
    color: var(--branco-neve);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(249, 212, 35, 0.3);
}

.btn-primary:hover {
    background: var(--dourado-solar);
    color: var(--azul-oceano);
}

.btn-primary2 {
    background: var(--dourado-solar);
    border-color: var(--dourado-solar);
    color: var(--azul-oceano);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(249, 212, 35, 0.3);
    text-align: center;
}

.btn-primary2:hover {
    background: var(--branco-neve);
    color: var(--azul-oceano);
}

.btn-secondary {
    background: transparent;
    border-color: var(--dourado-solar);
    color: var(--branco-neve);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(249, 212, 35, 0.3);
}

.btn-secondary:hover {
    background: var(--dourado-solar);
    color: var(--azul-oceano);
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
}

.btn-large:hover {
    background: var(--branco-neve);
    color: var(--azul-oceano);

}

.btn-full {
    width: 100%;
    background: var(--dourado-solar);
    text-align: center;
    color: var(--azul-oceano);
}

.btn-full:hover {
    background: var(--azul-oceano);
    text-align: center;
    color: var(--branco-neve);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--branco-neve);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-whatsapp:hover {
    background: #1fb354;
    transform: translateY(-3px);
}

/* === SEÇÕES === */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--azul-oceano);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--cinza-medio);
    max-width: 600px;
    margin: 0 auto;
}

/* === SERVIÇOS === */
.services-highlight {
    background: var(--cinza-claro);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--branco-neve);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--sombra);
    transition: var(--transicao);
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--sombra-forte);
}

.service-card.featured {
    border: 3px solid var(--dourado-solar);
}

.featured-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--dourado-solar);
    color: var(--azul-oceano);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--azul-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--azul-oceano);
}

.service-icon svg {
    width: 40px;
    height: 40px;
}

.service-title {
    font-size: 1.8rem;
    color: var(--azul-oceano);
    margin-bottom: 1rem;
    text-align: center;
}

.service-description {
    text-align: center;
    color: var(--cinza-medio);
    margin-bottom: 1.5rem;
}

.service-benefits {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-benefits li {
    padding: 0.5rem 0;
    color: var(--cinza-medio);
    border-bottom: 1px solid var(--azul-soft);
}

.service-link {
    color: var(--azul-oceano);
    font-weight: 600;
    display: inline-block;
    margin-top: 1rem;
}

.service-link:hover {
    color: var(--dourado-solar);
}

/* === DIFERENCIAIS === */
.differentials {
    background: linear-gradient(135deg, var(--azul-oceano) 0%, #0277A8 100%);
    color: var(--branco-neve);
}

.differentials .section-title {
    color: var(--branco-neve);
}

.differentials .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.differentials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Tablet - 2 colunas */
@media (max-width: 1024px) {
    .differentials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.differential-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: var(--transicao);
}

.differential-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.differential-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.differential-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

/* === CALCULADORA === */
.calculator-section {
    background: var(--azul-soft);
}

.calculator-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: var(--branco-neve);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px var(--sombra);
}

.calculator-form {
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--azul-oceano);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--azul-soft);
    border-radius: 10px;
    font-size: 1rem;
    transition: var(--transicao);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--azul-oceano);
}

.form-group small {
    display: block;
    margin-top: 0.5rem;
    color: var(--cinza-medio);
    font-size: 0.9rem;
}

.calculator-results {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.result-card {
    background: var(--azul-soft);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.result-card h3 {
    color: var(--azul-oceano);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.result-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dourado-solar);
    margin-bottom: 0.5rem;
}

.result-label {
    color: var(--cinza-medio);
    font-size: 0.9rem;
}

.result-cta {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--azul-soft);
}

/* === DEPOIMENTOS === */
.testimonials {
    background: var(--cinza-claro);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--branco-neve);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--sombra);
}

.testimonial-stars {
    color: var(--dourado-solar);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--cinza-medio);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author strong {
    display: block;
    color: var(--azul-oceano);
    margin-bottom: 0.3rem;
}

.testimonial-author span {
    color: var(--cinza-medio);
    font-size: 0.9rem;
}

/* === CTA SECTION === */
.cta-section {
    background: linear-gradient(135deg, var(--azul-oceano) 0%, #0277A8 100%);
    color: var(--branco-neve);
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* === FOOTER === */
.footer {
    background: var(--preto);
    color: var(--branco-neve);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    text-align: center;
}

.footer-section {
    text-align: center;
}

.footer-logo {
    width: 150px;
    margin: 0 auto 1rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    text-align: center;
}

.footer-social {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transicao);
}

.footer-social a:hover {
    background: var(--dourado-solar);
    transform: translateY(-3px);
}

.footer-title {
    color: var(--dourado-solar);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    text-align: center;
}

.footer-links {
    list-style: none;
    text-align: center;
}

.footer-links li {
    margin-bottom: 0.7rem;
    text-align: center;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-links a:hover {
    color: var(--dourado-solar);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    text-align: center;
}

.footer-contact li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact svg {
    flex-shrink: 0;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact a:hover {
    color: var(--dourado-solar);
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    margin: 0.5rem 0;
}

/* === WHATSAPP FLUTUANTE === */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1002;
    transition: var(--transicao);
    animation: pulse 2s infinite;
    color: white;
    text-decoration: none;
}

.whatsapp-float svg {
    pointer-events: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 25px rgba(37, 211, 102, 0.6);
    }
}

/* === PÁGINAS INTERNAS === */
.page-hero {
    background: linear-gradient(135deg, var(--azul-oceano) 0%, #0277A8 100%);
    color: var(--branco-neve);
    text-align: center;
    padding: 1rem 0 2rem;
}

.page-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
}

/* === QUEM SOMOS === */
.about-intro-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

/* Tablet - Ajusta proporção da imagem */
@media (max-width: 1279px) {
    .about-intro-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-image {
        max-width: 400px;
        margin: 0 auto;
    }

    .about-intro {
        text-align: center;
    }

    .about-intro .section-title {
        text-align: center;
    }
}

.about-intro {
    text-align: left;
}

.about-intro .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--cinza-medio);
    margin-bottom: 1.5rem;
}

.about-image {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    object-fit: contain;
    max-width: 100%;
}

.mission-vision-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.mvv-card {
    background: var(--azul-soft);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
}

/* Tablet - 2 colunas, Valores embaixo ocupando 2 colunas */
@media (max-width: 1024px) {
    .mission-vision-values {
        grid-template-columns: 1fr 1fr;
    }

    .mvv-card:nth-child(3) {
        grid-column: 1 / -1;
    }
}

/* Mobile - 1 coluna (cards empilhados) */
@media (max-width: 767px) {
    .mission-vision-values {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .mvv-card:nth-child(3) {
        grid-column: 1;
    }
}

.mvv-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.mvv-title {
    color: var(--azul-oceano);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.mvv-text {
    color: var(--cinza-medio);
    line-height: 1.8;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.value-item {
    background: var(--branco-neve);
    padding: 1rem;
    border-radius: 10px;
    color: var(--azul-oceano);
    font-weight: 600;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.expertise-item {
    background: var(--branco-neve);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--sombra);
    text-align: center;
}

.expertise-item h4 {
    color: var(--azul-oceano);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 2rem auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: var(--dourado-solar);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    flex: 0 0 80px;
    background: var(--dourado-solar);
    color: var(--azul-oceano);
    padding: 1rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.2rem;
    text-align: center;
    z-index: 2;
}

.timeline-content {
    flex: 1;
    background: var(--azul-soft);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 0 2rem;
}

.timeline-content h4 {
    color: var(--azul-oceano);
    margin-bottom: 0.5rem;
}

.cta-box {
    background: var(--azul-soft);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    margin-top: 3rem;
}

.cta-box h3 {
    color: var(--azul-oceano);
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* === SERVIÇOS DETALHADOS === */
.service-detail-card {
    background: var(--branco-neve);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px var(--sombra);
    margin-bottom: 3rem;
}

.service-detail-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.service-detail-icon {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    background: var(--azul-soft);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--azul-oceano);
}

.service-detail-icon svg {
    width: 50px;
    height: 50px;
}

.service-detail-title {
    font-size: 2.5rem;
    color: var(--azul-oceano);
    margin-bottom: 0.5rem;
}

.service-detail-subtitle {
    color: var(--cinza-medio);
    font-size: 1.2rem;
}

.service-highlight-box {
    background: linear-gradient(135deg, var(--dourado-solar) 0%, #FFD700 100%);
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    text-align: center;
}

.service-highlight-box h3 {
    color: var(--azul-oceano);
    font-size: 1.8rem;
    margin: 0;
}

.content-subtitle {
    color: var(--azul-oceano);
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
}

.service-list,
.service-benefits-list {
    margin: 1rem 0 2rem;
    padding-left: 1.2rem;
}

.service-list li,
.service-benefits-list li {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--cinza-medio);
    padding-left: 0.3rem;
}

.ideal-for-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.ideal-item {
    background: var(--azul-soft);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    color: var(--azul-oceano);
}

.services-cta {
    background: var(--azul-soft);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
}

/* === GALERIA DE OBRAS === */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.gallery-item {
    background: var(--branco-neve);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--sombra);
    transition: var(--transicao);
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--sombra-forte);
}

.gallery-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(3, 90, 133, 0.9), transparent);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: var(--transicao);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info h3 {
    color: var(--branco-neve);
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
}

.gallery-info p {
    color: var(--dourado-solar);
}

.gallery-details {
    padding: 1.5rem;
}

.gallery-details h4 {
    color: var(--azul-oceano);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.gallery-description {
    color: var(--cinza-medio);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.gallery-specs {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.gallery-specs span {
    background: var(--azul-soft);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--azul-oceano);
    font-weight: 600;
}

.gallery-cta {
    background: var(--azul-soft);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    margin-top: 3rem;
}

/* === CONTATO === */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
}

/* Tablet - Layout em coluna única para evitar quebra */
@media (max-width: 1279px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form-container {
        padding: 2.5rem;
    }

    .contact-info {
        padding: 2.5rem;
    }
}

.contact-form-container {
    background: var(--branco-neve);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px var(--sombra);
}

.contact-form-container h2 {
    color: var(--azul-oceano);
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

/* Tablet - Form em coluna única */
@media (max-width: 1023px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.contact-info {
    background: linear-gradient(135deg, var(--azul-oceano) 0%, #0277A8 100%);
    padding: 3rem;
    border-radius: 20px;
    color: var(--branco-neve);
    text-align: center;
}

.contact-info h2 {
    margin-bottom: 2rem;
    text-align: center;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.contact-item>div {
    text-align: center;
    width: 100%;
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
    margin: 0 auto;
}

.contact-item h4 {
    color: var(--dourado-solar);
    margin-bottom: 0.3rem;
    text-align: center;
    width: 100%;
}

.contact-item p,
.contact-item a {
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    width: 100%;
    display: block;
}

.contact-cta {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.contact-cta h3 {
    margin-bottom: 1.5rem;
    text-align: center;
}

.business-hours {
    margin-top: 3rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    text-align: center;
}

.business-hours h4 {
    color: var(--dourado-solar);
    margin-bottom: 1rem;
    text-align: center;
}

.business-hours p {
    text-align: center;
}

.form-message {
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
    text-align: center;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
}

/* === CLIENTES === */
.clients-categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

/* Tablet e resoluções intermediárias - 2x2 */
@media (max-width: 1279px) {
    .clients-categories {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Mobile - 1 coluna */
@media (max-width: 767px) {
    .clients-categories {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.category-card {
    background: var(--azul-soft);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
}

.category-card h3 {
    color: var(--azul-oceano);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.partner-item {
    background: var(--branco-neve);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--sombra);
    text-align: center;
}

/* === FORMAS DE PAGAMENTO === */
.payment-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.payment-card {
    background: var(--branco-neve);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--sombra);
    text-align: center;
    position: relative;
}

.payment-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.payment-card h3 {
    color: var(--azul-oceano);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.payment-description {
    color: var(--cinza-medio);
    margin-bottom: 1.5rem;
}

.payment-methods {
    list-style: none;
    text-align: left;
}

.payment-methods li {
    padding: 0.5rem 0;
    color: var(--cinza-medio);
    border-bottom: 1px solid var(--azul-soft);
}

.payment-note {
    color: var(--cinza-medio);
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 1rem;
}

.payment-highlight {
    background: var(--dourado-solar);
    color: var(--azul-oceano);
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
    font-weight: 600;
}

.financing-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

/* Tablet e resoluções intermediárias - 2x2 */
@media (max-width: 1279px) {
    .financing-benefits {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Mobile - 1 coluna */
@media (max-width: 767px) {
    .financing-benefits {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.benefit-item {
    background: var(--azul-soft);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.benefit-item h4 {
    color: var(--azul-oceano);
    margin-bottom: 0.5rem;
}

.payment-example {
    max-width: 600px;
    margin: 3rem auto;
}

.example-box {
    background: var(--azul-soft);
    padding: 2rem;
    border-radius: 15px;
}

.example-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(3, 90, 133, 0.1);
}

.example-result {
    background: var(--dourado-solar);
    color: var(--azul-oceano);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1rem;
    text-align: center;
}

.example-result strong {
    display: block;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* === FAQ === */
.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--branco-neve);
    margin-bottom: 1rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px var(--sombra);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--azul-oceano);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transicao);
}

.faq-question:hover {
    background: var(--azul-soft);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--dourado-solar);
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--cinza-medio);
    line-height: 1.8;
}

.faq-cta {
    background: var(--azul-soft);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    margin-top: 3rem;
}

/* === RESPONSABILIDADE SOCIAL === */
.responsibility-intro {
    max-width: 100%;
    margin: 0 auto 4rem;
}

.impact-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

/* Tablet e resoluções intermediárias - 2x2 */
@media (max-width: 1279px) {
    .impact-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Mobile - 1 coluna */
@media (max-width: 767px) {
    .impact-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.impact-card {
    background: var(--azul-soft);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
}

.impact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.impact-card h3 {
    color: var(--azul-oceano);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.benefit-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

/* Tablet e resoluções intermediárias - 2x2 */
@media (max-width: 1279px) {
    .benefit-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Mobile - 1 coluna */
@media (max-width: 767px) {
    .benefit-list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.benefit-box {
    background: var(--branco-neve);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--sombra);
}

.benefit-box h4 {
    color: var(--azul-oceano);
    margin-bottom: 1rem;
}

.subtitle-text {
    color: var(--cinza-medio);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.stat-box {
    background: var(--azul-soft);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
}

.stat-box .stat-number {
    font-size: 3rem;
    color: var(--dourado-solar);
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-box .stat-label {
    color: var(--azul-oceano);
    font-weight: 600;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-equivalent {
    color: var(--cinza-medio);
    font-size: 0.9rem;
}

.commitment-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.commitment-item {
    background: var(--azul-soft);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    color: var(--azul-oceano);
}

.cta-box.green {
    background: linear-gradient(135deg, #2E7D32 0%, #43A047 100%);
    color: var(--branco-neve);
}

.cta-box.green h3 {
    color: var(--branco-neve);
}

/* === RESPONSIVO === */

/* Telas Grandes (1440px - 1920px) */
@media (min-width: 1440px) and (max-width: 1919px) {
    .nav-menu {
        gap: 2rem;
    }

    .nav-menu a {
        font-size: 1.02rem;
    }

    .btn-nav {
        padding: 0.85rem 1.6rem !important;
        font-size: 1.02rem;
    }

    /* LOGO SEMPRE VISÍVEL */
    .logo {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        margin-right: 2.5rem;
    }

    .logo img {
        height: 75px;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

/* Telas Médias-Grandes (1200px - 1439px) */
@media (min-width: 1200px) and (max-width: 1439px) {
    .nav-menu {
        gap: 1.5rem;
    }

    .nav-menu a {
        font-size: 0.95rem;
    }

    .btn-nav {
        padding: 0.8rem 1.4rem !important;
        font-size: 0.95rem;
    }

    /* LOGO SEMPRE VISÍVEL */
    .logo {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        margin-right: 2rem;
    }

    .logo img {
        height: 70px;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

/* Tablets e telas médias (768px - 1199px) - Menu Mobile */
@media (max-width: 1199px) {
    .nav-menu {
        position: fixed;
        top: 100px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 100px);
        flex-direction: column;
        background: var(--branco-neve);
        padding: 2rem;
        box-shadow: 0 10px 30px var(--sombra);
        transition: left 0.3s ease;
        gap: 1.5rem;
        text-align: center;
        overflow-y: auto;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 1rem;
        font-size: 1.2rem;
        width: 100%;
    }

    .btn-nav {
        display: block;
        width: 100%;
        max-width: 300px;
        margin: 1rem auto !important;
        text-align: center;
    }

    .menu-toggle {
        display: flex;
        z-index: 1001;
    }

    /* Ajusta altura do header para tablets */
    .navbar {
        padding: 1rem 0;
    }
}


/* ============================================
   RESPONSIVIDADE OTIMIZADA - MANTÉM HEADER E FOOTER
   Breakpoints Específicos por Dispositivo
   ============================================ */

/* === SMARTPHONES MENORES (320px - 359px) === */
@media (max-width: 359px) {
    .container {
        padding: 0 15px !important;
    }

    .hero-title {
        font-size: 1.8rem !important;
    }

    .hero-title .highlight {
        font-size: 2.2rem !important;
    }

    .hero-subtitle {
        font-size: 1rem !important;
    }

    .section-title {
        font-size: 1.6rem !important;
    }

    .btn {
        padding: 0.8rem 1.5rem !important;
        font-size: 0.95rem !important;
    }

    .stat-number {
        font-size: 1.8rem !important;
    }
}

/* === SMARTPHONES ANDROID COMUM (360px - 374px) === */
@media (min-width: 360px) and (max-width: 374px) {
    .container {
        padding: 0 16px !important;
    }

    .hero-title {
        font-size: 2rem !important;
    }

    .hero-title .highlight {
        font-size: 2.4rem !important;
    }

    .section-title {
        font-size: 1.7rem !important;
    }

    .stat-number {
        font-size: 1.9rem !important;
    }
}

/* === IPHONE PADRÃO (375px - 389px) === */
@media (min-width: 375px) and (max-width: 389px) {
    .container {
        padding: 0 18px !important;
    }

    .hero-title {
        font-size: 2.2rem !important;
    }

    .hero-title .highlight {
        font-size: 2.6rem !important;
    }

    .section-title {
        font-size: 1.8rem !important;
    }
}

/* === IPHONE PRO E SMARTPHONES MAIORES (390px - 479px) === */
@media (min-width: 390px) and (max-width: 479px) {
    .container {
        padding: 0 20px !important;
    }

    .hero-title {
        font-size: 2.3rem !important;
    }

    .hero-title .highlight {
        font-size: 2.7rem !important;
    }

    .section-title {
        font-size: 1.9rem !important;
    }
}

/* === MOBILE GERAL (até 767px) === */
@media (max-width: 767px) {

    /* Menu Mobile */
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        width: 100%;
        height: 100vh;
        background: var(--branco-neve);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 2rem 1.5rem;
        transition: left 0.3s ease;
        z-index: 999;
        overflow-y: auto;
        gap: 1.5rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu a {
        font-size: 1.25rem;
        padding: 0.8rem;
        text-align: center;
    }

    .btn-nav {
        width: auto;
        min-width: 200px;
        text-align: center;
    }

    /* Oculta botão flutuante e de zap quando o menu está preenchendo a tela */
    body.menu-open .app-float-btn,
    body.menu-open .whatsapp-float {
        display: none !important;
    }

    /* Hero Section Mobile */
    .hero {
        min-height: 80vh;
    }

    .hero-content {
        padding: 2rem 0;
        text-align: center;
    }

    .hero-subtitle {
        text-align: center !important;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 100%;
    }

    .hero-stats {
        gap: 2rem;
        justify-content: center;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    /* Seções Mobile */
    section {
        padding: 3rem 0;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .section-subtitle {
        font-size: 1rem;
        text-align: center;
    }

    /* Grids Mobile - 1 coluna */
    .services-grid,
    .differentials-grid,
    .testimonials-grid,
    .gallery-grid,
    .clients-categories,
    .payment-options,
    .values-grid,
    .benefit-boxes,
    .impact-stats,
    .partners-grid,
    .financing-benefits,
    .commitment-boxes {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Cards Mobile - Centralizados */
    .service-card,
    .differential-item,
    .testimonial-card,
    .client-card,
    .payment-card,
    .value-item,
    .benefit-item,
    .stat-box,
    .partner-item,
    .commitment-item,
    .category-card,
    .gallery-item {
        text-align: center;
        padding: 2rem 1.5rem;
    }

    .service-icon,
    .differential-icon,
    .payment-icon,
    .impact-icon,
    .mvv-icon {
        margin: 0 auto 1rem;
    }

    .service-title,
    .testimonial-author,
    .gallery-details h4,
    .service-description,
    .payment-description,
    .gallery-description {
        text-align: center;
    }

    /* Serviços Detalhados */
    .service-detail-header {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .service-detail-title,
    .service-detail-subtitle,
    .content-subtitle {
        text-align: center;
    }

    .service-benefits {
        text-align: left;
        max-width: 90%;
        margin: 0 auto;
    }

    .service-link,
    .service-highlight-box {
        display: block;
        text-align: center;
    }

    /* Sobre Nós */
    .about-intro-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-intro,
    .intro-text,
    .responsibility-intro {
        text-align: center;
    }

    .about-image {
        order: -1;
    }

    /* Contato e Formulários */
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-info {
        text-align: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .business-hours,
    .business-hours h4,
    .business-hours p,
    .contact-cta {
        text-align: center;
    }

    /* Calculadora */
    .calculator-wrapper {
        padding: 2rem 1.5rem;
    }

    .calculator-results {
        grid-template-columns: 1fr;
        text-align: center;
    }

    /* FAQ */
    .faq-item {
        padding: 1.5rem;
    }

    .faq-cta h3,
    .faq-cta p {
        text-align: center;
    }

    /* Timeline */
    .timeline-item {
        text-align: center;
    }

    .timeline-content {
        text-align: center;
    }

    .timeline-content::before {
        display: none;
    }

    .timeline-year {
        margin: 0 auto 1rem;
    }

    /* Galeria */
    .gallery-item {
        height: auto;
    }

    .gallery-info,
    .gallery-overlay,
    .gallery-specs {
        text-align: center;
    }

    .gallery-specs {
        justify-content: center;
    }

    .gallery-cta h3,
    .gallery-cta p {
        text-align: center;
    }

    /* Pagamento */
    .payment-methods {
        text-align: center;
        padding: 0;
    }

    .payment-methods li {
        text-align: center;
    }

    .example-box {
        text-align: center;
    }

    .example-row {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    /* CTAs e Outros */
    .cta-section,
    .cta-box,
    .cta-content,
    .result-cta,
    .services-cta,
    .social-commitment {
        text-align: center;
    }

    .services-cta h2,
    .services-cta p {
        text-align: center;
    }

    /* Página Geral */
    .page-title {
        text-align: center;
    }

    .page-subtitle,
    .subtitle-text,
    .testimonial-text,
    .mvv-text {
        text-align: center;
    }

    /* Formulários */
    .form-group {
        text-align: center;
    }

    .form-group label {
        text-align: center;
        display: block;
    }

    /* Footer Mobile - Centralizado */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }

    .footer-section {
        text-align: center;
    }

    .footer-logo {
        margin: 0 auto 1rem;
    }

    .footer-description,
    .footer-title {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-links,
    .footer-contact {
        text-align: center;
        list-style: none;
        padding: 0;
    }

    .footer-links li,
    .footer-contact li {
        text-align: center;
    }

    .footer-contact li {
        justify-content: center;
    }

    .footer-bottom {
        text-align: center;
    }
}

/* === TABLETS RETRATO (768px - 1023px) === */
@media (min-width: 768px) and (max-width: 1023px) {
    .container {
        max-width: 720px;
        padding: 0 30px;
    }

    /* Hero Tablet */
    .hero-title {
        font-size: 2.8rem;
    }

    .hero-title .highlight {
        font-size: 3.2rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    /* Grids - 2 colunas */
    .services-grid,
    .differentials-grid,
    .payment-options {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .testimonials-grid,
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .values-grid,
    .benefit-boxes {
        grid-template-columns: repeat(2, 1fr);
    }

    section {
        padding: 4rem 0;
    }
}

/* === TABLETS PAISAGEM E PEQUENOS DESKTOPS (1024px - 1279px) === */
@media (min-width: 1024px) and (max-width: 1279px) {
    .container {
        max-width: 960px;
        padding: 0 30px;
    }

    /* Menu compacto para evitar corte */
    .nav-menu {
        gap: 1rem;
    }

    .nav-menu a {
        font-size: 0.88rem;
    }

    .btn-nav {
        padding: 0.65rem 1.2rem !important;
        font-size: 0.88rem;
    }

    .logo {
        margin-right: 1.2rem;
    }

    /* Timeline */
    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        flex-direction: row !important;
    }

    .timeline-year {
        position: absolute;
        left: 0;
    }

    .timeline-content {
        margin-left: 100px;
        margin-right: 0;
    }

    /* Hero */
    .hero-title {
        font-size: 3rem;
    }

    .hero-title .highlight {
        font-size: 3.5rem;
    }

    .section-title {
        font-size: 2.3rem;
    }

    /* Grids - 3 colunas */
    .services-grid,
    .differentials-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .testimonials-grid,
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* === DESKTOPS PADRÃO (1280px - 1439px) === */
@media (min-width: 1280px) and (max-width: 1439px) {
    .container {
        max-width: 1200px;
    }

    .hero-title {
        font-size: 3.3rem;
    }

    .hero-title .highlight {
        font-size: 3.8rem;
    }

    .section-title {
        font-size: 2.4rem;
    }

    /* Grids - 3 colunas */
    .services-grid,
    .differentials-grid,
    .testimonials-grid,
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* === DESKTOPS GRANDES (1440px - 1919px) === */
@media (min-width: 1440px) and (max-width: 1919px) {
    .container {
        max-width: 1320px;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-title .highlight {
        font-size: 4rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .services-grid,
    .differentials-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }

    .testimonials-grid,
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

/* === FULL HD (1920px - 2559px) - AJUSTADO PARA MELHOR VISUALIZAÇÃO === */
@media (min-width: 1920px) and (max-width: 2559px) {
    .container {
        max-width: 1400px;
    }

    html {
        font-size: 16px;
    }

    /* === HEADER - MANTIDO ORIGINAL === */
    .logo {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        margin-right: 2.5rem;
    }

    .logo img {
        height: 85px;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .nav-menu {
        gap: 1.8rem;
    }

    .nav-menu a {
        font-size: 1.05rem;
    }

    .btn-nav {
        padding: 0.85rem 1.8rem !important;
        font-size: 1.05rem;
    }

    /* === FIM HEADER === */

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-title .highlight {
        font-size: 4rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    section {
        padding: 5rem 0;
    }

    .stat-number {
        font-size: 3rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

/* === 4K E ULTRA HD (2560px+) === */
@media (min-width: 2560px) {
    .container {
        max-width: 2000px;
    }

    html {
        font-size: 20px;
    }

    /* === HEADER 4K - MANTIDO ORIGINAL === */
    .logo {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        margin-right: 4rem;
    }

    .logo img {
        height: 100px;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .nav-menu {
        gap: 3rem;
    }

    .nav-menu a {
        font-size: 1.15rem;
    }

    .btn-nav {
        padding: 1rem 2.5rem !important;
        font-size: 1.15rem;
    }

    /* === FIM HEADER 4K === */

    .hero-title {
        font-size: 5rem;
    }

    .hero-title .highlight {
        font-size: 6rem;
    }

    .services-grid,
    .testimonials-grid,
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
        gap: 3rem;
    }
}

/* ============================================
   BREAKPOINTS ADICIONAIS PARA COBERTURA TOTAL
   Suporte para resoluções históricas, especiais e futuras
   ============================================ */

/* === RESOLUÇÕES MUITO PEQUENAS (< 320px) === */
/* CGA, QQVGA, QVGA */
@media (max-width: 319px) {
    .container {
        padding: 0 10px !important;
    }

    .hero-title {
        font-size: 1.5rem !important;
        line-height: 1.3;
    }

    .hero-title .highlight {
        font-size: 1.8rem !important;
    }

    .hero-subtitle {
        font-size: 0.9rem !important;
    }

    .section-title {
        font-size: 1.4rem !important;
    }

    .btn {
        padding: 0.7rem 1.2rem !important;
        font-size: 0.85rem !important;
    }

    .stat-number {
        font-size: 1.5rem !important;
    }

    .stat-label {
        font-size: 0.75rem !important;
    }

    .logo img {
        height: 40px !important;
    }

    .nav-menu a {
        font-size: 0.9rem !important;
    }
}

/* === VGA e SVGA (640×480, 800×600) - Landscape === */
@media (min-width: 480px) and (max-width: 800px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
    }

    .hero-content {
        padding: 1.5rem 0;
    }

    .hero-title {
        font-size: 2rem !important;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    section {
        padding: 2.5rem 0;
    }
}

/* === WQVGA e HVGA (480×272, 480×320) === */
@media (min-width: 480px) and (max-width: 639px) {
    .container {
        padding: 0 18px;
    }

    .hero-title {
        font-size: 2.1rem !important;
    }

    .section-title {
        font-size: 1.75rem !important;
    }
}

/* === FWVGA (854×480) === */
@media (min-width: 640px) and (max-width: 853px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem;
    }
}

/* === XGA (1024×768) - Portrait Tablet === */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
    .container {
        max-width: 700px;
    }

    .services-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* === WXGA Variants (1280×800, 1366×768) === */
@media (min-width: 1024px) and (max-width: 1366px) {
    .container {
        max-width: 1100px;
    }

    /* Ajustes do menu para não cortar em 1212px */
    .nav-menu {
        gap: 1.2rem;
    }

    .nav-menu a {
        font-size: 0.9rem;
        padding: 0.6rem 0;
    }

    .btn-nav {
        padding: 0.7rem 1.3rem !important;
        font-size: 0.9rem;
    }

    .logo {
        margin-right: 1.5rem;
    }

    .logo img {
        height: 60px !important;
    }

    .hero-title {
        font-size: 3.2rem;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.8rem;
    }
}

/* === WSXGA+ (1680×1050) === */
@media (min-width: 1600px) and (max-width: 1679px) {
    .container {
        max-width: 1280px;
    }
}

/* === UXGA (1600×1200) 4:3 === */
@media (min-width: 1600px) and (max-width: 1600px) and (min-height: 1200px) {
    .container {
        max-width: 1300px;
    }
}

/* === WUXGA (1920×1200) 16:10 === */
@media (min-width: 1920px) and (max-width: 1920px) and (min-height: 1200px) {
    .container {
        max-width: 1400px;
    }

    .hero-title {
        font-size: 3.8rem;
    }
}

/* === ULTRAWIDE SCREENS (21:9, 32:9) === */
/* UWFHD (2560×1080) */
@media (min-width: 2560px) and (max-height: 1080px) {
    .container {
        max-width: 1600px;
    }

    html {
        font-size: 16px;
    }

    .hero {
        min-height: 100vh;
    }

    .services-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
}

/* WQHD+ Ultrawide (3440×1440) */
@media (min-width: 3440px) and (max-height: 1440px) {
    .container {
        max-width: 1800px;
    }

    .services-grid,
    .testimonials-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* UW4K (3840×1600) */
@media (min-width: 3840px) and (max-height: 1600px) {
    .container {
        max-width: 2000px;
    }

    .services-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* Super Ultrawide (5120×1440, 5120×2160) */
@media (min-width: 5120px) and (max-height: 2160px) {
    .container {
        max-width: 2400px;
    }

    html {
        font-size: 20px;
    }

    .services-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 3rem;
    }

    .hero-title {
        font-size: 5rem;
    }
}

/* Dual-QHD (7680×2160) 32:9 */
@media (min-width: 7680px) and (max-height: 2160px) {
    .container {
        max-width: 3000px;
    }

    .services-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

/* === 5K (5120×2880) === */
@media (min-width: 5120px) and (min-height: 2880px) {
    .container {
        max-width: 2400px;
    }

    html {
        font-size: 22px;
    }

    .hero-title {
        font-size: 5.5rem;
    }

    .logo img {
        height: 120px !important;
    }
}

/* === 8K UHD (7680×4320) === */
@media (min-width: 7680px) and (min-height: 4320px) {
    .container {
        max-width: 3200px;
    }

    html {
        font-size: 24px;
    }

    .hero-title {
        font-size: 6rem;
    }

    .logo img {
        height: 140px !important;
    }

    .services-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 4rem;
    }

    section {
        padding: 8rem 0;
    }
}

/* === 10K+ Ultra Alta Resolução === */
@media (min-width: 10240px) {
    .container {
        max-width: 4000px;
    }

    html {
        font-size: 28px;
    }

    .logo img {
        height: 180px !important;
    }

    .services-grid {
        grid-template-columns: repeat(8, 1fr);
        gap: 5rem;
    }
}

/* === SMARTPHONES PROPORÇÕES ESPECIAIS === */
/* 18:9 (2:1) - Android modernos */
@media (min-width: 360px) and (max-width: 414px) and (min-aspect-ratio: 18/9) {
    .hero {
        min-height: 85vh;
    }

    .hero-content {
        padding: 1.5rem 0;
    }
}

/* 19.5:9 - iPhones X, 11, 12, 13, 14 */
@media (min-width: 375px) and (max-width: 428px) and (min-aspect-ratio: 19/9) {
    .hero {
        min-height: 85vh;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* 20:9 - Smartphones recentes */
@media (min-width: 360px) and (max-width: 414px) and (min-aspect-ratio: 20/9) {
    .hero {
        min-height: 80vh;
    }
}

/* === PROPORÇÃO 5:3 === */
@media (min-aspect-ratio: 5/3) and (max-aspect-ratio: 5/3) {
    .container {
        max-width: 85%;
    }
}

/* === PROPORÇÃO 21:10 === */
@media (min-aspect-ratio: 21/10) and (max-aspect-ratio: 21/10) {
    .container {
        max-width: 80%;
    }
}

/* === CINEMA DCI 2K (2048×1080) === */
@media (min-width: 2048px) and (max-width: 2048px) and (max-height: 1080px) {
    .container {
        max-width: 1500px;
    }
}

/* === CINEMA DCI 4K (4096×2160) === */
@media (min-width: 4096px) and (max-width: 4096px) and (max-height: 2160px) {
    .container {
        max-width: 2200px;
    }

    .services-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* === TABLETS ESPECÍFICOS === */
/* iPad não-Retina Portrait (1024×768) */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
    .hero-title {
        font-size: 2.8rem;
    }
}

/* iPad Retina (2048×1536) */
@media (min-width: 1536px) and (max-width: 2048px) and (orientation: portrait) {
    .container {
        max-width: 1200px;
    }

    html {
        font-size: 18px;
    }
}

/* Android Tablet 10" (1920×1200) */
@media (min-width: 1200px) and (max-width: 1920px) and (orientation: portrait) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* === TOUCHSCREEN 3:2 (3000×2000) === */
@media (min-width: 2000px) and (max-width: 3000px) and (aspect-ratio: 3/2) {
    .container {
        max-width: 1600px;
    }

    html {
        font-size: 18px;
    }
}

/* === PROTEÇÃO CONTRA OVERFLOW === */
@media (max-width: 479px) {

    /* Garante que nada quebre em telas muito pequenas */
    * {
        max-width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    img {
        max-width: 100%;
        height: auto;
    }

    .hero-title,
    .section-title {
        word-break: break-word;
        hyphens: auto;
    }
}

/* === AJUSTE PARA ALTURA MUITO BAIXA (Landscape muito wide) === */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 2rem 0;
    }

    .hero-stats {
        margin-top: 1.5rem;
    }

    section {
        padding: 2rem 0;
    }

    .navbar {
        padding: 0.5rem 0;
    }

    .logo img {
        height: 50px !important;
    }
}

/* === AJUSTE PARA ALTURA MUITO ALTA (Portrait muito tall) === */
@media (min-height: 1500px) and (orientation: portrait) {
    .hero {
        min-height: 70vh;
    }

    section {
        padding: 6rem 0;
    }
}

/* === FIX PARA GRIDS EM RESOLUÇÕES INTERMEDIÁRIAS === */
@media (min-width: 900px) and (max-width: 1023px) {

    .services-grid,
    .differentials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* === FIX PARA NOTEBOOKS HD+ (1600×900) === */
@media (min-width: 1600px) and (max-width: 1600px) and (max-height: 900px) {
    .container {
        max-width: 1280px;
    }

    .hero-title {
        font-size: 3.2rem;
    }
}


/* === SEÇÃO DE VÍDEO === */
.video-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--azul-soft) 0%, var(--branco-neve) 100%);
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

/* Link Card do YouTube */
.video-link-card {
    display: block;
    background: linear-gradient(135deg, #035A85 0%, #023a57 100%);
    border-radius: 15px;
    padding: 40px;
    text-decoration: none;
    box-shadow: 0 10px 40px rgba(3, 90, 133, 0.3);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.video-link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(3, 90, 133, 0.4);
}

.video-link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(249, 212, 35, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-link-card:hover::before {
    opacity: 1;
}

.video-link-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.video-link-logo {
    max-width: 180px;
    height: auto;
    margin-bottom: 25px;
}

.video-link-text h3 {
    color: var(--dourado-solar);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.video-link-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    max-width: 500px;
    line-height: 1.5;
}

.video-link-play {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
    background-color: #FF0000;
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.video-link-card:hover .video-link-play {
    background-color: #cc0000;
    transform: scale(1.05);
}

.youtube-icon {
    width: 30px;
    height: 30px;
}

/* Responsividade do Vídeo */
@media (max-width: 768px) {
    .video-section {
        padding: 50px 0;
    }

    .video-link-card {
        padding: 30px 20px;
        border-radius: 10px;
    }

    .video-link-logo {
        max-width: 140px;
        margin-bottom: 20px;
    }

    .video-link-text h3 {
        font-size: 1.4rem;
    }

    .video-link-text p {
        font-size: 1rem;
    }

    .video-link-play {
        padding: 12px 25px;
        font-size: 1rem;
        margin-top: 25px;
    }

    .youtube-icon {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    .video-section {
        padding: 40px 0;
    }

    .video-link-card {
        padding: 25px 15px;
    }

    .video-link-logo {
        max-width: 120px;
    }

    .video-link-text h3 {
        font-size: 1.2rem;
    }

    .video-link-text p {
        font-size: 0.9rem;
    }

    .video-link-play {
        padding: 10px 20px;
        font-size: 0.9rem;
        gap: 8px;
    }

    .youtube-icon {
        width: 20px;
        height: 20px;
    }
}

/* ============================================
   COMPONENTE DE UPLOAD DE ARQUIVO
   ============================================ */

.file-upload-wrapper {
    position: relative;
    width: 100%;
}

.file-input-hidden {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.file-upload-area {
    border: 2px dashed var(--azul-oceano);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    background: var(--azul-soft);
    transition: all 0.3s ease;
    cursor: pointer;
}

.file-upload-area:hover,
.file-upload-area.drag-over {
    border-color: var(--dourado-solar);
    background: rgba(249, 212, 35, 0.1);
}

.file-upload-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.file-upload-text {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.file-upload-main {
    color: var(--azul-oceano);
    font-weight: 600;
    font-size: 1rem;
}

.file-upload-hint {
    color: var(--cinza-medio);
    font-size: 0.85rem;
}

/* Preview do arquivo selecionado */
.file-preview {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.2rem;
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border: 2px solid #28a745;
    border-radius: 10px;
    margin-top: 0;
}

.file-preview-icon {
    width: 40px;
    height: 40px;
    background: #28a745;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    flex-shrink: 0;
}

.file-preview-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
}

.file-preview-name {
    color: #155724;
    font-weight: 600;
    font-size: 0.95rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.file-preview-size {
    color: #155724;
    font-size: 0.85rem;
    opacity: 0.8;
}

.file-remove-btn {
    width: 32px;
    height: 32px;
    background: #dc3545;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.file-remove-btn:hover {
    background: #c82333;
    transform: scale(1.1);
}

/* Mensagem de erro */
.file-error {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1rem;
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 8px;
    color: #721c24;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.file-error::before {
    content: "⚠️";
}

/* Responsividade do upload */
@media (max-width: 480px) {
    .file-upload-area {
        padding: 1.5rem 1rem;
    }

    .file-upload-icon {
        font-size: 2rem;
    }

    .file-upload-main {
        font-size: 0.9rem;
    }

    .file-upload-hint {
        font-size: 0.8rem;
    }

    .file-preview {
        padding: 0.8rem 1rem;
        gap: 0.8rem;
    }

    .file-preview-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .file-preview-name {
        font-size: 0.85rem;
    }

    .file-preview-size {
        font-size: 0.8rem;
    }

    .file-remove-btn {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }
}


/* ============================================
   VALIDAÇÃO VISUAL DOS CAMPOS OBRIGATÓRIOS
   ============================================ */

/* Campo com erro */
.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
    border-color: #dc3545 !important;
    background-color: #fff8f8;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.15);
}

.form-group.has-error input:focus,
.form-group.has-error select:focus,
.form-group.has-error textarea:focus {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.25);
}

/* Label do campo com erro */
.form-group.has-error label {
    color: #dc3545;
}

/* Mensagem de erro do campo */
.field-error-message {
    display: block;
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 0.4rem;
    padding-left: 0.2rem;
}

.field-error-message::before {
    content: "⚠ ";
}

/* Animação de shake para chamar atenção */
@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translateX(-5px);
    }

    20%,
    40%,
    60%,
    80% {
        transform: translateX(5px);
    }
}

.form-group.has-error.shake {
    animation: shake 0.5s ease-in-out;
}

/* Campo válido (opcional - feedback positivo) */
.form-group.is-valid input,
.form-group.is-valid select,
.form-group.is-valid textarea {
    border-color: #28a745;
}


/* Asterisco de campo obrigatório */
.required-mark {
    color: #dc3545;
    font-weight: bold;
    margin-left: 2px;
}


/* ============================================
   MODAL DE SUCESSO
   ============================================ */

.success-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    backdrop-filter: blur(4px);
}

.success-modal-content {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    max-width: 420px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: successModalSlideIn 0.3s ease-out;
}

@keyframes successModalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.success-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.success-modal-close:hover {
    background-color: #f0f0f0;
    color: #333;
}

.success-modal-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    color: #fff;
    box-shadow: 0 8px 20px rgba(40, 167, 69, 0.3);
}

.success-modal-title {
    color: #28a745;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.success-modal-message {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsivo */
@media (max-width: 480px) {
    .success-modal-content {
        padding: 30px 20px;
        margin: 20px;
    }

    .success-modal-icon {
        width: 60px;
        height: 60px;
        font-size: 30px;
    }

    .success-modal-title {
        font-size: 1.3rem;
    }
}