/* ============================================
   VITORINO & MURTA - ESTILOS
   ============================================ */

/* Reset e Configurações Básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Tema Light - Cores baseadas na logo Grupo Daniel Mendonça */
    --primary: #2d3e50;          /* Azul marinho da logo */
    --primary-light: #3d5266;    /* Azul marinho claro */
    --primary-dark: #1d2e40;     /* Azul marinho escuro */
    --accent: #c9a875;           /* Dourado/Bronze da logo */
    --accent-light: #d9b885;     /* Dourado claro */
    --accent-dark: #b99865;      /* Dourado escuro */
    --text-dark: #2d3e50;        /* Texto escuro (azul marinho) */
    --text-light: #6c757d;       /* Texto secundário (cinza) */
    --bg-light: #f8f9fa;         /* Fundo claro principal */
    --bg-gray: #e9ecef;          /* Fundo cinza claro */
    --border-color: #dee2e6;     /* Bordas sutis */
    --white: #FFFFFF;
    --success: #28a745;
    --warning: #ffc107;
    --glow-gold: rgba(201, 168, 117, 0.4);      /* Glow dourado suave */
    --glow-strong: rgba(201, 168, 117, 0.6);    /* Glow dourado forte */

    /* Cores alternativas */
    --light-bg: #f8fafc;
    --light-bg-alt: #ffffff;
    --light-text: #2d3e50;
    --light-text-secondary: #6c757d;
    --light-border: #e2e8f0;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    background-image:
        radial-gradient(circle at 10% 20%, rgba(201, 168, 117, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(201, 168, 117, 0.03) 0%, transparent 50%);
    line-height: 1.6;
}

/* Estilos gerais para garantir legibilidade */
p, span, div:not(.service-icon):not(.logo-icon), li, label {
    color: inherit;
}

ul, ol {
    color: var(--text-light);
}

strong, b {
    color: var(--primary);
    font-weight: 700;
}

.hero strong, .hero b {
    color: var(--accent);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--primary);
}

/* ============================================
   SEÇÕES COM FUNDO CLARO (LIGHT)
   ============================================ */

.section-light {
    background: linear-gradient(to bottom, #ffffff 0%, #f8fafc 100%);
    color: var(--text-dark);
    position: relative;
    padding: 6rem 0;
}

.section-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0.4;
}

.section-light h1,
.section-light h2,
.section-light h3,
.section-light h4,
.section-light h5,
.section-light h6 {
    color: var(--light-text) !important;
}

.section-light p,
.section-light span:not(.service-badge):not(.section-label),
.section-light li,
.section-light div:not(.service-icon):not(.logo-icon):not(.location-icon):not(.tech-icon) {
    color: var(--light-text-secondary) !important;
}

.section-light strong,
.section-light b {
    color: var(--light-text) !important;
}

.section-light .service-card p,
.section-light .service-card h3,
.section-light .service-card li {
    color: var(--light-text-secondary) !important;
}

.section-light .service-card h3 {
    color: var(--light-text) !important;
}

.section-light .location-card p,
.section-light .location-card h3 {
    color: var(--light-text) !important;
}

.section-light .section-description {
    color: var(--light-text-secondary) !important;
}

.section-light .section-label {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-light .service-card {
    background: #ffffff;
    border: 2px solid #e9ecef;
    box-shadow: 0 10px 40px rgba(45, 62, 80, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.section-light .service-card:hover {
    box-shadow: 0 20px 60px rgba(201, 168, 117, 0.25);
    border-color: var(--accent);
    transform: translateY(-8px);
}

.section-light .service-icon,
.section-light .service-icon-large {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--accent);
}

.section-light .tech-feature-item {
    background: var(--light-bg-alt);
    border: 1px solid var(--light-border);
}

.section-light .tech-feature-item:hover {
    border-color: var(--accent);
    box-shadow: 0 8px 20px rgba(201, 168, 117, 0.15);
}

/* ============================================
   HEADER E NAVEGAÇÃO
   ============================================ */

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(201, 168, 117, 0.15);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 20px rgba(45, 62, 80, 0.06);
}

header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 10px 30px rgba(45, 62, 80, 0.12);
}

nav {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
}

.logo-section:hover {
    transform: scale(1.05);
}

.logo-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-weight: bold;
    font-size: 18px;
    box-shadow: 0 4px 20px rgba(201, 168, 117, 0.3);
    transition: all 0.3s ease;
}

.logo-section:hover .logo-icon {
    box-shadow: 0 8px 30px rgba(201, 168, 117, 0.5);
    transform: translateY(-2px);
}

.logo-text h1 {
    font-size: 20px;
    color: var(--primary);
    margin: 0;
    transition: all 0.3s ease;
}

.logo-text p {
    font-size: 12px;
    color: var(--text-light);
    margin: 0;
    font-weight: 500;
    letter-spacing: 1px;
}

.nav-links {
    display: none;
    gap: 0.5rem;
    align-items: center;
}

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

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
}

.nav-link {
    padding: 0.5rem 1rem;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--accent);
    background-color: rgba(201, 168, 117, 0.08);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 100%);
    border-radius: 2px;
    transform: translateX(-50%);
    transition: width 0.5s ease;
    box-shadow: 0 2px 10px var(--glow-gold);
}

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

.cta-button {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--accent);
    padding: 0.625rem 1.75rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    border: 2px solid var(--primary);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(45, 62, 80, 0.2);
}

.cta-button:hover {
    box-shadow: 0 8px 30px rgba(201, 168, 117, 0.4);
    transform: scale(1.05);
    background: var(--primary-dark);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.625rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 24px;
    color: var(--primary);
}

.menu-toggle:hover {
    background-color: rgba(243, 244, 246, 0.5);
}

/* ============================================
   SEÇÃO HERO
   ============================================ */

.hero {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: var(--primary);
    overflow: hidden;
    transition: transform 0.1s ease-out, opacity 0.3s ease-out;
    will-change: transform, opacity;
}

.hero::before {
    content: '';\n    position: absolute;\n    inset: 0;\n    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1" fill="rgba(201,168,117,0.08)"/></svg>') repeat;\n    z-index: 1;\n    opacity: 0.4;\n}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 2rem;
    width: 100%;
    color: var(--primary);
}

.hero-content * {
    color: inherit;
}

.hero-content h1,
.hero-content h2,
.hero-content h3,
.hero-content p,
.hero-content span {
    color: var(--primary);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    animation: slideUp 0.8s ease-out;
    color: var(--primary);
}

.hero h1 .accent {
    color: var(--accent);
}

.hero p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 600px;
    line-height: 1.8;
    animation: slideUp 0.8s ease-out 0.2s both;
    color: var(--text-light);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: slideUp 0.8s ease-out 0.4s both;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--accent);
    padding: 0.875rem 2rem;
    border-radius: 12px;
    border: 2px solid var(--primary);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 8px 25px rgba(45, 62, 80, 0.2);
}

.btn-primary:hover {
    transform: translateX(5px) scale(1.05);
    box-shadow: 0 12px 40px rgba(201, 168, 117, 0.4);
    background: var(--primary-dark);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    padding: 0.875rem 2rem;
    border-radius: 12px;
    border: 2px solid var(--primary);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-size: 1rem;
    box-shadow: 0 0 20px rgba(45, 62, 80, 0.1);
}

.btn-secondary:hover {
    background: rgba(45, 62, 80, 0.08);
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(201, 168, 117, 0.3);
}
    border: 2px solid white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-size: 1rem;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

/* ============================================
   SEÇÃO DE SERVIÇOS
   ============================================ */

.services {
    padding: 4rem 2rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(201, 168, 117, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 100%);
    border-radius: 2px;
    box-shadow: 0 2px 15px var(--glow-gold);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: #ffffff;
    border: 2px solid #e9ecef;
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(45, 62, 80, 0.06);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(201, 168, 117, 0.08) 0%, rgba(201, 168, 117, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(201, 168, 117, 0.25), 0 0 60px rgba(201, 168, 117, 0.1);
    border-color: var(--accent);
}

.service-card-content {
    position: relative;
    z-index: 1;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin-bottom: 1.5rem;
    font-size: 28px;
    box-shadow: 0 8px 25px rgba(45, 62, 80, 0.15);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(201, 168, 117, 0.35);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary);
    font-weight: 700;
    line-height: 1.3;
}

.service-card p {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.service-link:hover {
    gap: 1rem;
    color: var(--primary);
}

/* ============================================
   SEÇÃO DE ESTATÍSTICAS
   ============================================ */

.stats {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    color: var(--primary);
    position: relative;
    overflow: hidden;
}

.stats::before,
.stats::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    filter: blur(80px);
}

.stats::before {
    top: 0;
    right: 0;
    width: 384px;
    height: 384px;
    background: var(--accent);
    box-shadow: 0 0 200px var(--glow-gold);
}

.stats::after {
    bottom: 0;
    left: 0;
    width: 384px;
    height: 384px;
    background: var(--primary-light);
    box-shadow: 0 0 200px rgba(45, 62, 80, 0.2);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid rgb(233, 236, 239);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(45, 62, 80, 0.08);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(201, 168, 117, 0.25);
    border-color: var(--accent);
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-number {
    transform: scale(1.1);
}

.stat-label {
    font-size: 1rem;
    opacity: 0.95;
    color: var(--text-light);
}

/* ============================================
   SEÇÃO SOBRE
   ============================================ */

.about {
    padding: 4rem 2rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 40% 60%, rgba(201, 168, 117, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-content h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(45, 62, 80, 0.12);
    border: 2px solid rgba(201, 168, 117, 0.2);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
   SEÇÃO DE CONTATO
   ============================================ */

.contact {
    padding: 4rem 2rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 60% 40%, rgba(201, 168, 117, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.contact-header {
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.contact-header h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-item h3 {
    font-size: 1.1rem;
    color: var(--accent);
}

.contact-item p {
    color: var(--text-light);
}

.contact-item a {
    color: var(--accent);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--text-light);
}

.form-group input,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #ffffff;
    color: var(--primary);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(201, 168, 117, 0.15), 0 0 20px rgba(201, 168, 117, 0.1);
    background: #ffffff;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--accent);
    padding: 0.875rem 2rem;
    border: 2px solid var(--primary);
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(45, 62, 80, 0.2);
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    font-size: 1rem;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: width 0.6s, height 0.6s;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(201, 168, 117, 0.35);
}

.submit-btn:hover::before {
    width: 300px;
    height: 300px;
}

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

footer {
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 3rem 2rem;
    border-top: 1px solid rgba(201, 168, 117, 0.2);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(201, 168, 117, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--accent);
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-section a:hover {
    color: var(--accent);
    padding-left: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   ANIMAÇÕES
   ============================================ */

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

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
        filter: blur(4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-24px);
        filter: blur(4px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
        filter: blur(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(24px);
        filter: blur(4px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
        filter: blur(0);
    }
}

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-10deg) scale(0.9);
    }
    to {
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

.slide-up {
    animation: slideUp 0.6s ease-out;
}

/* Scroll Animations - Estado inicial */
.scroll-animate {
    opacity: 0;
    transform-origin: center center;
    transition-property: opacity, transform, filter;
    transition-duration: 0.9s;
    transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
}

.scroll-animate.fade-in-up {
    transform: translateY(24px);
    filter: blur(4px);
}

.scroll-animate.scale-in {
    transform: scale(0.94);
    filter: blur(3px);
}

.scroll-animate.slide-in-left {
    transform: translateX(-24px);
    filter: blur(4px);
}

.scroll-animate.slide-in-right {
    transform: translateX(24px);
    filter: blur(4px);
}

.scroll-animate.rotate-in {
    transform: rotate(-4deg) scale(0.96);
    filter: blur(3px);
}

/* Scroll Animations - Estado ativo */
.scroll-animate.animate {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1) rotate(0deg);
    filter: blur(0);
}

/* Configurações de smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Efeito parallax para hero */
.hero {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    transition: background-position 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Hover effects para service cards */
.service-card {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
}

/* Hover effects para stat cards */
.stat-card {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.stat-card:hover {
    transform: scale(1.1);
}

/* Transições suaves para imagens */
.about-image img {
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Efeito de blur progressivo no header */
header.scrolled {
    backdrop-filter: blur(20px);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ============================================
   HERO SECTION - NOVO DESIGN
   ============================================ */

.hero-badge {
    display: inline-block;
    background: rgba(201, 168, 117, 0.12);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    border: 2px solid rgba(201, 168, 117, 0.25);
    box-shadow: 0 4px 20px rgba(201, 168, 117, 0.15);
}

.hero-badge span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-dark);
}

.hero-trust {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.trust-item strong {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    display: block;
    margin-bottom: 0.25rem;
}

.trust-item span {
    font-size: 0.9rem;
    opacity: 0.9;
    color: var(--text-light);
}

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

.about-story {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    color: #fff;
}

.about-story::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 30%, rgba(201, 168, 117, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.about-grid-story {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
    max-width: 1280px;
    margin: 0 auto;
}

.about-image-hero {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(45, 62, 80, 0.12), 0 0 80px rgba(201, 168, 117, 0.08);
    border: 2px solid rgba(201, 168, 117, 0.2);
}

.about-image-hero img {
    width: 100%;
    height: auto;
    display: block;
}

.image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--accent);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 20px rgba(45, 62, 80, 0.3);
}

.about-content-story {
    padding: 2rem 0;
}

.section-label {
    display: inline-block;
    background: linear-gradient(135deg, rgba(201, 168, 117, 0.12), rgba(201, 168, 117, 0.08));
    color: var(--accent-dark);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(201, 168, 117, 0.25);
    box-shadow: 0 4px 15px rgba(201, 168, 117, 0.1);
    transition: all 0.3s ease;
}

.section-label:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 168, 117, 0.2);
}

.about-content-story h2 {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.about-content-story h3 {
    color: var(--text-light);
}

.about-content-story p {
    color: var(--text-light);
}

.subtitle {
    font-size: 1.5rem;
    color: var(--text-light);
    font-weight: 400;
    margin-bottom: 2rem;
    font-family: 'Inter', sans-serif;
}

.story-highlight {
    background: linear-gradient(135deg, rgba(201, 168, 117, 0.12) 0%, rgba(201, 168, 117, 0.06) 100%);
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid var(--accent);
    border: 2px solid rgba(201, 168, 117, 0.25);
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    box-shadow: 0 4px 20px rgba(201, 168, 117, 0.1);
}

.highlight-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.highlight-text strong {
    font-size: 1.1rem;
    color: var(--accent);
    display: block;
    margin-bottom: 0.5rem;
}

.highlight-text p {
    color: var(--text-light);
    line-height: 1.6;
}

.story-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.philosophy-box {
    background: linear-gradient(135deg, rgba(201, 168, 117, 0.08) 0%, rgba(201, 168, 117, 0.04) 100%);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(45, 62, 80, 0.08);
    border: 2px solid rgba(201, 168, 117, 0.2);
}

.philosophy-box h4 {
    font-size: 1.3rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.philosophy-box p {
    color: var(--text-light);
    line-height: 1.7;
}

.credentials-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.credential-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.cred-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.cred-text strong {
    display: block;
    color: var(--accent);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.cred-text span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ============================================
   SERVICES SECTION - ENHANCED
   ============================================ */

.section-header-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.section-header-center .section-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.section-description {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-top: 1rem;
    opacity: 0.9;
}

.service-card-featured {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(201, 168, 117, 0.15) 0%, rgba(255, 255, 255, 0.95) 100%);
    color: var(--primary);
    border: 2px solid var(--accent);
    box-shadow: 0 15px 50px rgba(201, 168, 117, 0.25);
}

.service-card-featured h3 {
    color: var(--primary);
}

.service-card-featured p {
    color: var(--text-light);
}

.service-icon-large {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.service-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--accent);
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(45, 62, 80, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    color: var(--text-light);
}

.service-features li {
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: var(--text-light);
}

.service-link-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--accent);
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 1rem;
    box-shadow: 0 4px 20px rgba(45, 62, 80, 0.2);
}

.service-link-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(201, 168, 117, 0.35);
    background: var(--primary-dark);
}

/* ============================================
   TECH DIFFERENTIAL SECTION
   ============================================ */

.tech-differential {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.tech-differential::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(201, 168, 117, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.tech-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
}

.tech-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 1rem 0 2rem;
}

.tech-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.tech-feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.tech-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.tech-text h4 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.tech-text p {
    color: var(--text-light);
    line-height: 1.6;
}

.tech-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.tech-image img {
    width: 100%;
    height: auto;
    display: block;
}

.tech-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--accent);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(45, 62, 80, 0.2);
    font-weight: 600;
    font-size: 0.9rem;
}

/* ============================================
   LOCATIONS SECTION
   ============================================ */

.locations {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.locations::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(201, 168, 117, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1280px;
    margin: 0 auto 3rem;
}

.location-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(45, 62, 80, 0.08);
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid #e9ecef;
}

.location-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(201, 168, 117, 0.25), 0 0 60px rgba(201, 168, 117, 0.1);
    border-color: var(--accent);
}

.location-card-featured {
    background: linear-gradient(135deg, rgba(201, 168, 117, 0.05) 0%, rgba(45, 62, 80, 0.02) 100%);
    border: 2px solid var(--accent);
    box-shadow: 0 15px 40px rgba(201, 168, 117, 0.2);
}

.location-card-featured:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(201, 168, 117, 0.35), 0 0 80px rgba(201, 168, 117, 0.15);
    border-color: var(--accent);
}

.location-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.location-badge {
    display: inline-block;
    background: rgba(201, 168, 117, 0.12);
    color: var(--accent);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin: 0.5rem 0 1rem;
    border: 1px solid rgba(201, 168, 117, 0.25);
}

.location-info {
    margin: 1.5rem 0;
    text-align: left;
}

.location-info p {
    padding: 0.5rem 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

.btn-secondary-small {
    background: transparent;
    color: var(--primary);
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    border: 2px solid var(--accent);
    font-weight: 600;
    box-shadow: 0 0 15px rgba(201, 168, 117, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    width: 100%;
}

.btn-secondary-small:hover {
    background: var(--primary);
    color: var(--accent);
}

.location-cta {
    max-width: 800px;
    margin: 0 auto;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(45, 62, 80, 0.15);
}

.cta-box h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.cta-box p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* ============================================
   CONTACT SECTION - MODERN
   ============================================ */

.contact-info-modern {
    background: #ffffff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(45, 62, 80, 0.06);
    border: 1px solid #e9ecef;
}

.ctawhite{
    color: #fff !important;
}

.contact-highlight-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    color: #fff !important;
}

.contact-highlight-box h3 {
    color: var(--accent);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.contact-item-modern {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.contact-icon-modern {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-text-modern h4 {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-text-modern p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.contact-link-btn {
    display: inline-block;
    background: var(--primary);
    color: var(--accent);
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(45, 62, 80, 0.15);
}

.contact-link-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 168, 117, 0.25);
}

.trust-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-badge-item span {
    color: var(--success);
    font-size: 1.2rem;
}

.trust-badge-item p {
    color: var(--text-dark);
    font-size: 0.85rem;
    font-weight: 600;
}

.contact-form-modern {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-form-modern h3 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.form-subtitle {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.form-group select {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-privacy {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.form-privacy input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 18px;
    height: 18px;
}

.form-privacy label {
    font-size: 0.9rem;
    color: var(--text-light);
    cursor: pointer;
}

.submit-btn-modern {
    width: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--accent);
    padding: 1.25rem;
    border-radius: 12px;
    border: none;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(45, 62, 80, 0.2);
}

.submit-btn-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(201, 168, 117, 0.35);
    background: var(--primary-dark);
}

.form-note {
    text-align: center;
    color: var(--text-light);
    font-size: 0.85rem;
    margin-top: 1rem;
}

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

.final-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 5rem 2rem;
    text-align: center;
    color: white;
}

.final-cta-content h2 {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.final-cta-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    opacity: 0.95;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.btn-primary-large {
    background: var(--accent);
    color: var(--primary);
    padding: 1.25rem 3rem;
    border-radius: 12px;
    border: none;
    font-weight: 700;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(201, 168, 117, 0.3);
}

.btn-primary-large:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 60px rgba(201, 168, 117, 0.5);
    background: var(--accent-light);
}

.cta-note {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

/* ============================================
   RESPONSIVIDADE - MOBILE
   ============================================ */

@media (max-width: 767px) {
    .menu-toggle {
        display: block;
    }

    nav {
        padding: 1rem 1rem;
    }

    .logo-text {
        display: none;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .cta-button {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero-trust {
        gap: 1.5rem;
        justify-content: center;
    }

    .trust-item strong {
        font-size: 1.5rem;
    }

    /* About Story */
    .about-grid-story {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-content-story h2 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .credentials-row {
        grid-template-columns: 1fr;
    }

    /* Services Grid */
    .service-card-featured {
        grid-column: span 1;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    /* Tech Differential */
    .tech-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .tech-image {
        order: -1;
    }

    /* Locations */
    .locations-grid {
        grid-template-columns: 1fr;
    }

    .cta-box {
        padding: 2rem;
    }

    .cta-box h3 {
        font-size: 1.4rem;
    }

    .text-white{
        color: #fff !important;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-header h2 {
        font-size: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-modern, .contact-info-modern {
        padding: 2rem;
    }

    /* Final CTA */
    .final-cta-content h2 {
        font-size: 1.8rem;
    }

    .final-cta-content p {
        font-size: 1rem;
    }

    .btn-primary-large {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    /* About Grid */
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-content h2 {
        font-size: 2rem;
    }
}

/* ============================================
   WHATSAPP BUSINESS WIDGET
   ============================================ */

#whatsapp-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

.whatsapp-float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25d366 0%, #1ebe57 100%);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 8px 40px rgba(37, 211, 102, 0.2);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5), 0 12px 50px rgba(37, 211, 102, 0.3);
}

.whatsapp-float-btn:active {
    transform: scale(0.95);
}

@keyframes pulse-whatsapp {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 8px 40px rgba(37, 211, 102, 0.2);
    }
    50% {
        box-shadow: 0 4px 25px rgba(37, 211, 102, 0.6), 0 8px 50px rgba(37, 211, 102, 0.3);
    }
}

.whatsapp-popup {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 320px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
}

.whatsapp-popup.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.whatsapp-popup-header {
    background: linear-gradient(135deg, #25d366 0%, #1ebe57 100%);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.whatsapp-popup-header span {
    color: white;
    font-weight: 600;
    font-size: 16px;
    flex: 1;
}

.whatsapp-popup-header button {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    transition: background 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-popup-header button:hover {
    background: rgba(255, 255, 255, 0.2);
}

.whatsapp-popup-body {
    padding: 20px;
}

.whatsapp-message {
    background: #f0f0f0;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 16px;
    position: relative;
}

.whatsapp-message::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 12px;
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-right: 6px solid #f0f0f0;
}

.whatsapp-message p {
    color: #333;
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

.whatsapp-message p:first-child {
    margin-bottom: 4px;
}

.whatsapp-chat-btn {
    width: 100%;
    background: linear-gradient(135deg, #25d366 0%, #1ebe57 100%);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(37, 211, 102, 0.2);
}

.whatsapp-chat-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    background: linear-gradient(135deg, #1ebe57 0%, #128c4a 100%);
}

.whatsapp-chat-btn:active {
    transform: translateY(0);
}

/* Responsivo para mobile */
@media (max-width: 768px) {
    #whatsapp-widget {
        bottom: 16px;
        right: 16px;
    }

    .whatsapp-float-btn {
        width: 56px;
        height: 56px;
    }

    .whatsapp-float-btn svg {
        width: 28px;
        height: 28px;
    }

    .whatsapp-popup {
        width: calc(100vw - 32px);
        right: 16px;
        bottom: 82px;
    }
}
