/* ============================================
   RESET & VARIABLES
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cores modernas e premium - tons quentes elegantes */
    --primary-color: #B8860B;      /* Ouro escuro - premium e elegante */
    --primary-dark: #8B6F47;       /* Marrom quente - profundo */
    --primary-light: #D4AF37;      /* Ouro claro - sofisticado */
    --accent-color: #A67C52;       /* Bege quente - natural */
    --accent-green: #6B8E23;       /* Verde oliva - terroso */
    --accent-blue: #4A90E2;        /* Azul moderno */

    --text-dark: #2C2C2C;
    --text-light: #666666;
    --text-muted: #999999;

    --bg-light: #F9F7F4;
    --bg-white: #FFFFFF;
    --bg-dark: #FAF8F3;
    --bg-gradient: linear-gradient(135deg, #B8860B 0%, #D4AF37 100%);

    --border-color: #E8DCC8;
    --border-light: #F0EBE0;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 12px 48px rgba(0, 0, 0, 0.15);

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease-out;
    --transition-slow: all 0.5s cubic-bezier(0.2, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-white) !important;
    background: #FFFFFF !important;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Lora', Georgia, serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--primary-dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   BUTTONS & FORMS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border: none;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(184, 134, 11, 0.25);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
    box-shadow: 0 4px 12px rgba(184, 134, 11, 0.15);
}

.btn-large {
    padding: 14px 36px;
    font-size: 15px;
    width: 100%;
    display: block;
    text-align: center;
}

/* Icon Styles (Font Awesome) */
.btn i,
.diferencial-icon i,
.location-card h4 i,
.contact-method h4 i {
    margin-right: 8px;
    font-size: inherit;
}

.diferencial-icon {
    font-size: 28px;
}

.whatsapp-button i {
    font-size: 24px;
}

/* Form Styles */
.lead-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 30px 0;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.form-group {
    width: 100%;
}

.form-group input {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: var(--text-dark);
    background-color: var(--bg-light);
    transition: var(--transition-fast);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: var(--bg-white);
    box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.1);
}

.form-group input.error {
    border-color: #e74c3c;
    background-color: #fadbd8;
}

.form-group input.error:focus {
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.form-note {
    text-align: center;
    font-size: 13px;
    color: var(--text-light);
    margin-top: 20px;
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Lora', serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--primary-color);
    letter-spacing: 0.5px;
}

.logo-symbol {
    font-size: 24px;
    color: var(--primary-color);
}

.logo-text {
    max-width: 200px;
    word-break: break-word;
    line-height: 1.2;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-dark);
    transition: var(--transition-fast);
    position: relative;
}

.nav-menu a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition-fast);
}

.nav-menu a:hover:after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
    transition: var(--transition-fast);
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: var(--bg-white);
        border-bottom: 1px solid var(--border-color);
        padding: 20px;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        border-bottom: 1px solid var(--border-color);
        padding: 12px 0;
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-toggle {
        display: flex;
    }

    .logo-text {
        max-width: 100px;
        font-size: 13px;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    margin-top: 70px;
    padding: 60px 20px;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.hero-text h1 {
    font-size: 54px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-description {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    animation: zoomIn 0.8s ease-out;
}

@keyframes zoomIn {
    from {
        transform: scale(1.05);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Hero Stats */
.hero-stats {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 60px 20px;
    background: linear-gradient(135deg, rgba(139, 90, 60, 0.05) 0%, rgba(201, 168, 116, 0.05) 100%);
    border-radius: 8px;
    text-align: center;
}

.stat-item h3 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.stat-item p {
    font-size: 13px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 40px;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .hero-visual {
        height: 300px;
    }

    .hero-cta {
        justify-content: center;
    }

    .btn-large {
        max-width: 100%;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 40px 20px;
    }
}

/* ============================================
   SECTION STYLES
   ============================================ */

section {
    scroll-margin-top: 70px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.section-header p {
    font-size: 16px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.section-intro {
    text-align: center;
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 40px;
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about {
    padding: 100px 20px;
    background: var(--bg-light);
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.location-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.location-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: var(--primary-color);
    background: var(--bg-light);
}

.location-card h4 {
    font-size: 16px;
    margin-bottom: 18px;
    color: var(--primary-color);
}

.location-card ul {
    list-style: none;
}

.location-card li {
    font-size: 13px;
    color: var(--text-light);
    padding: 6px 0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .location-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .section-header h2 {
        font-size: 28px;
    }
}

/* ============================================
   DIFERENCIAIS SECTION
   ============================================ */

.diferenciais {
    padding: 100px 20px;
}

.diferenciais .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.diferenciais h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    width: 100%;
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1300px;
    width: 100%;
}

.diferencial-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 40px 30px;
    border-radius: 12px;
    transition: var(--transition);
    background: transparent;
    border: 1px solid var(--border-color);
    overflow: visible;
    min-height: 380px;
}

.diferencial-item:hover {
    background: var(--bg-white);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
    transform: translateY(-8px);
}

.diferencial-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: white;
    margin: 0 auto 25px;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(184, 134, 11, 0.2);
    transition: var(--transition);
    line-height: 1;
}

.diferencial-icon i {
    display: flex;
    align-items: center;
    justify-content: center;
}

.diferencial-item:hover .diferencial-icon {
    box-shadow: 0 10px 30px rgba(184, 134, 11, 0.3);
    transform: scale(1.1);
}

.diferencial-item h3,
.diferencial-item p {
    padding: 0;
    max-width: 280px;
}

.diferencial-item h3 {
    margin-bottom: 12px;
    font-size: 18px;
}

.diferencial-item h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.diferencial-item p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
}

@media (max-width: 768px) {
    .diferenciais-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .diferencial-item {
        padding: 30px 20px;
    }
}

/* ============================================
   INFRAESTRUTURA SECTION
   ============================================ */

.infraestrutura {
    padding: 100px 20px;
    background: var(--bg-light);
}

.infraestrutura h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
}

.infraestrutura-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

@media (max-width: 1200px) {
    .infraestrutura-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .infraestrutura-showcase {
        grid-template-columns: 1fr;
    }
}

.infra-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.infra-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
    border-color: var(--primary-color);
}

.infra-image {
    width: 100%;
    height: 280px;
    background-size: cover;
    background-position: center;
    transition: var(--transition);
}

.infra-card:hover .infra-image {
    transform: scale(1.05);
}

.infra-card h3 {
    font-size: 20px;
    margin: 24px 20px 12px;
    color: var(--primary-color);
}

.infra-card p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0 20px 20px;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .infraestrutura-showcase {
        grid-template-columns: 1fr;
    }

    .infra-image {
        height: 200px;
    }
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--bg-white);
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 42px;
    color: var(--bg-white);
    margin-bottom: 20px;
}

.cta-content > p {
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.cta-section .btn {
    margin: 0 auto;
}

.cta-section .btn-primary {
    background-color: var(--bg-white);
    color: var(--primary-color);
    border-color: var(--bg-white);
}

.cta-section .btn-primary:hover {
    background-color: var(--primary-light);
    border-color: var(--primary-light);
    color: var(--primary-color);
}

.cta-section .btn-secondary {
    color: var(--bg-white);
    border-color: var(--bg-white);
}

.cta-section .btn-secondary:hover {
    background-color: var(--bg-white);
    color: var(--primary-color);
}

.cta-section .form-note {
    color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   VIDEO & GALLERY SECTION
   ============================================ */

.video-gallery {
    padding: 100px 20px;
    background: var(--bg-white);
}

.video-gallery h2 {
    text-align: center;
    margin-bottom: 15px;
    font-size: 42px;
}

.video-gallery .section-intro {
    text-align: center;
    margin-bottom: 50px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.video-container {
    margin-bottom: 80px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--bg-light);
}

.video-placeholder {
    position: relative;
}

.video-placeholder .btn {
    position: relative;
    z-index: 10;
}

.video-container video {
    display: block;
    width: 100%;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    aspect-ratio: 1;
    cursor: pointer;
    border: 1px solid var(--border-color);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.video-gallery h3 {
    font-size: 28px;
    color: var(--text-dark);
}

/* ============================================
   COMPANY SECTION
   ============================================ */

.company-section {
    padding: 100px 20px;
    background: var(--bg-light);
}

.company-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 20px;
}

.company-section > .container > p,
.company-intro {
    text-align: center;
    font-size: 16px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 60px;
    line-height: 1.8;
}

.company-description {
    text-align: center;
    font-size: 15px;
    color: var(--text-light);
    max-width: 700px;
    margin: 60px auto 0;
    line-height: 1.9;
}

.company-description p {
    margin-bottom: 16px;
}

.company-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat {
    text-align: center;
    padding: 30px 20px;
    background: var(--bg-white);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.stat h3,
.stat-number {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.stat p {
    font-size: 13px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .company-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .company-section h2 {
        font-size: 28px;
    }
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact {
    padding: 100px 20px;
}

.contact h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-method {
    text-align: center;
    padding: 30px 20px;
    background: var(--bg-light);
    border-radius: 8px;
    transition: var(--transition);
}

.contact-method:hover {
    background: var(--primary-light);
    transform: translateY(-4px);
}

.contact-method:hover h4,
.contact-method:hover a,
.contact-method:hover p {
    color: var(--bg-white);
}

.contact-method h4 {
    font-size: 16px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.contact-method a,
.contact-method p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
}

.contact-method a {
    display: inline-block;
    margin-top: 8px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .contact-info {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .contact h2 {
        font-size: 28px;
    }
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--primary-dark);
    color: var(--bg-white);
    padding: 80px 20px 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer-section h4 {
    color: var(--bg-white);
    font-size: 16px;
    margin-bottom: 20px;
}

.footer-section p {
    font-size: 13px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-fast);
}

.footer-section a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.flabs-credit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.flabs-credit:hover {
    opacity: 1;
}

.flabs-credit span {
    font-size: 0.75rem;
    color: #fff;
    white-space: nowrap;
}

.flabs-credit img {
    display: block;
    height: 42px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-disclaimer {
    margin-top: 15px;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */

.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #20BA5A 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    z-index: 999;
    animation: slideIn 0.5s ease-out;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .whatsapp-button {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

/* ============================================
   MODAL
   ============================================ */

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease-out;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    background-color: var(--bg-white);
    padding: 60px 40px;
    border-radius: 8px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    position: relative;
    animation: slideUp 0.4s ease-out;
    box-shadow: var(--shadow-lg);
}

@keyframes slideUp {
    from {
        transform: translateY(40px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--text-light);
    transition: var(--transition-fast);
}

.modal-close:hover {
    color: var(--primary-color);
}

.modal-content h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.modal-content p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .hero-text h1 {
        font-size: 42px;
    }

    .hero-cta {
        justify-content: flex-start;
    }

    .diferenciais-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .nav-menu {
        padding: 15px;
    }

    .hero {
        padding: 40px 15px;
    }

    .hero-text h1 {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-cta {
        flex-direction: column;
        gap: 12px;
    }

    .btn {
        padding: 11px 20px;
        font-size: 12px;
    }

    .btn-large {
        padding: 12px 24px;
        font-size: 13px;
    }

    h2 {
        font-size: 24px;
    }

    .section-header p {
        font-size: 14px;
    }

    .about,
    .diferenciais,
    .infraestrutura,
    .cta-section,
    .company-section,
    .contact {
        padding: 60px 15px;
    }

    .location-grid,
    .diferenciais-grid {
        gap: 20px;
    }

    .hero-stats {
        gap: 20px;
        padding: 30px 15px;
    }

    .stat-item h3 {
        font-size: 28px;
    }

    .stat-item p {
        font-size: 11px;
    }

    .diferencial-item {
        padding: 20px 15px;
    }

    .diferencial-icon {
        font-size: 36px;
    }

    .form-group input {
        font-size: 13px;
        padding: 11px 14px;
    }

    .footer-content {
        padding: 0 15px;
    }

    .modal-content {
        padding: 40px 30px;
    }
}

/* ============================================
   WHATSAPP MODAL
   ============================================ */


.modal-content {
    background-color: var(--bg-white);
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 420px;
    width: 90%;
    position: relative;
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 28px;
    font-weight: bold;
    color: var(--text-light);
    background: none;
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: var(--primary-color);
    transform: scale(1.2);
}

.modal-content h2 {
    font-size: 26px;
    margin-bottom: 12px;
    text-align: center;
}

.modal-content > p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 15px;
}

#whatsappForm {
    width: 100%;
}

#whatsappForm .form-group {
    margin-bottom: 16px;
}

#whatsappForm input {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: var(--text-dark);
    background-color: var(--bg-light);
    transition: var(--transition-fast);
}

#whatsappForm input:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: var(--bg-white);
    box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.1);
}

#whatsappForm .btn {
    width: 100%;
    margin-top: 10px;
}

/* Print Styles */
@media print {
    .navbar,
    .whatsapp-button,
    .hero-cta,
    .cta-section {
        display: none;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}
