/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Variables - Paleta de cores para área jurídica/trânsito */
:root {
    /* Cores Principais - Tema Azul Marinho/Sério */
    --primary-color: #25D366;
    --primary-hover: #20BA5A;
    --primary-light: #E8F5E8;

    /* Força o esquema claro */
    color-scheme: light;

    /* Paleta Jurídica - Azul Marinho com toques de vermelho/urgência */
    --navy-dark: #1a2a4a;
    --navy-medium: #2c3e5f;
    --navy-light: #3d5278;
    --slate-blue: #4a6490;
    --steel-blue: #5a7aa8;

    /* Cores de Alerta/Urgência */
    --alert-red: #c0392b;
    --alert-red-light: #e74c3c;
    --warning-orange: #e67e22;
    --warning-yellow: #f39c12;

    /* Cores de Sucesso */
    --success-green: #27ae60;
    --success-light: #2ecc71;

    /* Cores de Texto */
    --text-primary: #1a2a4a;
    --text-secondary: #4a5568;
    --text-light: #718096;
    --text-white: #FFFFFF;

    /* Cores de Fundo */
    --background-white: #FFFFFF;
    --background-light: #f8fafc;
    --background-soft: #edf2f7;
    --background-hero: #1a2a4a;
    --background-accent: #e2e8f0;

    /* Cores de Apoio */
    --accent-gold: #d4a84b;
    --accent-copper: #b87333;
    --warm-gray: #f7f8fa;
    --cool-gray: #e2e8f0;

    /* Sombras */
    --shadow-light: 0 2px 15px rgba(26, 42, 74, 0.08);
    --shadow-medium: 0 4px 25px rgba(26, 42, 74, 0.12);
    --shadow-strong: 0 8px 35px rgba(26, 42, 74, 0.18);

    /* Outros */
    --border-radius: 12px;
    --border-radius-large: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--background-white);
    overflow-x: hidden;
    font-weight: 400;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 700;
}
h2 {
    font-size: clamp(1.6rem, 4vw, 2.8rem);
    font-weight: 600;
}
h3 {
    font-size: clamp(1.3rem, 3vw, 1.9rem);
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    font-weight: 400;
}

/* Buttons */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--primary-color);
    color: var(--text-white);
    padding: 18px 36px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: var(--shadow-medium);
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.btn-whatsapp:hover {
    background: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: var(--shadow-strong);
}

.btn-large {
    padding: 22px 48px;
    font-size: 1.2rem;
}

.btn-center {
    display: flex;
    justify-content: center;
    margin: 3rem auto 0;
    width: fit-content;
}

.whatsapp-icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-medium) 50%, var(--navy-light) 100%);
    color: var(--text-white);
    padding: 100px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(212, 168, 75, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(192, 57, 43, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(90, 122, 168, 0.1) 0%, transparent 40%);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 168, 75, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-30px, 30px) scale(1.1); }
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    z-index: 2;
    align-items: center;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.95);
    padding: 12px 24px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    animation: fadeInDown 1s ease;
}

.badge-icon {
    font-size: 1.2rem;
    color: var(--navy-dark);
}

.badge-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.15;
    color: var(--text-white);
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    margin-bottom: 2rem;
    opacity: 0.95;
    color: #f9f9f9;
    font-weight: 500;
    line-height: 1.5;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

/* Hero Empathy Box */
.hero-empathy-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 30px;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.hero-empathy-box p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.hero-empathy-box p:last-child {
    margin-bottom: 0;
}

.empathy-highlight {
    color: var(--accent-gold) !important;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.empathy-highlight i {
    animation: pointRight 1s ease-in-out infinite;
}

@keyframes pointRight {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

/* Hero CTA Group */
.hero-cta-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.btn-primary {
    font-size: 1.15rem;
    padding: 20px 40px;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

.btn-primary:hover {
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
}

.hero-trust-text {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.trust-icon {
    width: 18px;
    height: 18px;
    color: var(--accent-gold);
}

/* Identification Section */
.identification {
    padding: 100px 0;
    background: var(--background-light);
}

.identification-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.identification-card {
    background: var(--background-white);
    border-radius: var(--border-radius-large);
    padding: 40px;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
    border-top: 5px solid;
}

.identification-card.bafometro {
    border-top-color: var(--alert-red);
}

.identification-card.cnh {
    border-top-color: var(--warning-orange);
}

.identification-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-white);
}

.bafometro .card-icon {
    background: linear-gradient(135deg, var(--alert-red), var(--alert-red-light));
}

.cnh .card-icon {
    background: linear-gradient(135deg, var(--warning-orange), var(--warning-yellow));
}

.card-header h3 {
    font-size: 1.4rem;
    color: var(--text-primary);
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.check-list {
    list-style: none;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--cool-gray);
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.check-list li:last-child {
    border-bottom: none;
}

.check-list li i {
    color: var(--success-green);
    font-size: 1.1rem;
    margin-top: 3px;
}

.identification-cta {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-top: 50px;
}

/* Education Section */
.education {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--background-white) 0%, var(--background-soft) 100%);
}

.education-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.alert-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--warning-orange), var(--warning-yellow));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2rem;
    color: var(--text-white);
    box-shadow: 0 8px 30px rgba(230, 126, 34, 0.3);
}

.education-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 50px 0;
}

.education-item {
    background: var(--background-white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow-light);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    text-align: left;
    transition: var(--transition);
    border-left: 4px solid var(--navy-medium);
}

.education-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.education-number {
    width: 40px;
    height: 40px;
    background: var(--navy-dark);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.education-item p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.6;
}

.warning-box {
    background: linear-gradient(135deg, var(--alert-red), var(--alert-red-light));
    color: var(--text-white);
    padding: 25px 35px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 40px;
}

.warning-box i {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.warning-box p {
    color: var(--text-white);
    margin: 0;
    font-size: 1.1rem;
}

/* Objection Section */
.objection {
    padding: 100px 0;
    background: var(--navy-dark);
    color: var(--text-white);
}

.objection-content {
    max-width: 800px;
    margin: 0 auto;
}

.quote-icon {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
    opacity: 0.5;
}

.objection .section-title {
    color: var(--text-white);
    margin-bottom: 30px;
}

.testimonial-quote {
    font-size: 1.4rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin: 0 0 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid var(--accent-gold);
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.objection h3 {
    color: var(--alert-red-light);
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 25px;
}

.danger-list {
    list-style: none;
}

.danger-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.danger-list li:last-child {
    border-bottom: none;
}

.danger-list li i {
    color: var(--alert-red-light);
    font-size: 1.2rem;
}

/* Solution Section */
.solution {
    padding: 100px 0;
    background: var(--background-light);
}

.solution-content {
    max-width: 1000px;
    margin: 0 auto;
}

.solution-header {
    text-align: center;
    margin-bottom: 40px;
}

.solution-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--success-green), var(--success-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--text-white);
    box-shadow: 0 8px 30px rgba(39, 174, 96, 0.3);
}

.solution-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 50px;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.solution-item {
    background: var(--background-white);
    border-radius: var(--border-radius);
    padding: 35px;
    box-shadow: var(--shadow-light);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: var(--transition);
}

.solution-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.solution-item-icon {
    width: 50px;
    height: 50px;
    background: var(--navy-dark);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.solution-item p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
}

.location-badge {
    background: var(--navy-dark);
    color: var(--text-white);
    padding: 20px 30px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 1.1rem;
}

.location-badge i {
    color: var(--alert-red-light);
    font-size: 1.3rem;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--navy-medium) 0%, var(--navy-dark) 100%);
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    color: var(--text-white);
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 20px;
}

.cta-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.cta-trust {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-top: 20px;
}

/* Authority Section */
.authority {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--background-white) 0%, var(--background-light) 100%);
    position: relative;
    overflow: hidden;
}

.authority::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--navy-dark), var(--accent-gold), var(--navy-dark));
}

.authority-header {
    text-align: center;
    margin-bottom: 60px;
}

.authority-label {
    display: inline-block;
    background: var(--navy-dark);
    color: var(--accent-gold);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.authority-subtitle {
    max-width: 600px;
    margin: 20px auto 0;
    color: var(--text-secondary);
    font-size: 1.15rem;
}

/* Authority Stats */
.authority-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.stat-card {
    background: var(--background-white);
    border-radius: var(--border-radius-large);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--navy-dark), var(--navy-medium));
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--navy-dark), var(--navy-medium));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--text-white);
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--navy-dark);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 500;
}

/* Authority Credentials */
.authority-credentials {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.credential-card {
    background: var(--background-white);
    border-radius: var(--border-radius);
    padding: 30px;
    display: flex;
    gap: 20px;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border-left: 4px solid var(--navy-medium);
}

.credential-card:hover {
    box-shadow: var(--shadow-medium);
    transform: translateX(5px);
    border-left-color: var(--accent-gold);
}

.credential-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--navy-light), var(--navy-medium));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--text-white);
    flex-shrink: 0;
}

.credential-content h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.credential-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Authority Badges */
.authority-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    padding-top: 40px;
    border-top: 1px solid var(--cool-gray);
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--navy-dark);
    color: var(--text-white);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

.badge-item:hover {
    background: var(--navy-medium);
    transform: translateY(-2px);
}

.badge-item i {
    color: var(--accent-gold);
    font-size: 1.1rem;
}

/* Urgency Section */
.urgency {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--alert-red) 0%, var(--alert-red-light) 100%);
    text-align: center;
}

.urgency-content {
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-white);
}

.urgency-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    animation: ring 2s ease-in-out infinite;
}

@keyframes ring {
    0%, 100% { transform: rotate(0); }
    10%, 30% { transform: rotate(-10deg); }
    20%, 40% { transform: rotate(10deg); }
    50% { transform: rotate(0); }
}

.urgency h2 {
    color: var(--text-white);
    margin-bottom: 20px;
}

.urgency p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.15rem;
    margin-bottom: 15px;
}

.urgency-highlight {
    font-size: 1.3rem !important;
    font-weight: 600;
    margin: 30px 0 !important;
}

.urgency .btn-whatsapp {
    margin-top: 30px;
}

/* Footer */
.footer {
    background: var(--navy-dark);
    color: var(--text-white);
    padding: 60px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.footer-info {
    text-align: center;
}

.footer-info p {
    margin-bottom: 10px;
    opacity: 0.9;
    color: var(--text-white);
    font-size: 1rem;
}

/* Section Title */
.section-title {
    font-size: 2.4rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-family: 'Playfair Display', serif;
}

.section-title-center {
    font-size: clamp(2rem, 4vw, 2.8rem);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.3;
    color: var(--text-primary);
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-float-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--primary-color);
    color: var(--text-white);
    padding: 16px 20px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.whatsapp-float-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-strong);
}

.whatsapp-float-text {
    display: none;
}

.whatsapp-float-btn:hover .whatsapp-float-text {
    display: block;
}

/* WhatsApp Mini Chat */
.whatsapp-mini-chat {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 340px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    z-index: 999;
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    transition: all 0.3s ease;
    display: none;
}

.whatsapp-mini-chat.show {
    display: block;
    opacity: 1;
    transform: translateY(0) scale(1);
}

.chat-header {
    background: var(--primary-color);
    color: white;
    padding: 15px 20px;
    border-radius: 15px 15px 0 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-avatar {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.chat-info h4 {
    color: #ffffff;
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.chat-info span {
    font-size: 0.8rem;
    opacity: 0.9;
}

.chat-close {
    margin-left: auto;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: background 0.2s ease;
}

.chat-close:hover {
    background: rgba(255,255,255,0.2);
}

.chat-body {
    padding: 20px;
}

.chat-message {
    background: #f0f0f0;
    padding: 15px;
    border-radius: 15px 15px 15px 5px;
    margin-bottom: 15px;
}

.chat-message p {
    margin: 0 0 8px 0;
    font-size: 0.95rem;
    color: var(--text-primary);
    line-height: 1.5;
}

.chat-message p:last-child {
    margin-bottom: 0;
}

.chat-footer {
    padding: 0 20px 20px;
}

.chat-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--primary-color);
    color: white;
    padding: 14px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    width: 100%;
}

.chat-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
}

.chat-btn .whatsapp-icon {
    width: 20px;
    height: 20px;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Animation Classes */
.animate-fade-down {
    animation: fadeInDown 0.8s ease-out;
}

.animate-fade-left {
    animation: fadeInLeft 0.8s ease-out;
}

.animate-fade-right {
    animation: fadeInRight 0.8s ease-out;
}

.animate-zoom-in {
    animation: zoomIn 0.8s ease-out;
}

.animate-pulse {
    animation: pulse 2s infinite;
}

/* Responsive Design */
@media (max-width: 992px) {
    .identification-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .solution-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 80px 0 60px;
        min-height: auto;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-empathy-box {
        padding: 20px;
    }

    .hero-empathy-box p {
        font-size: 1rem;
    }

    .identification, .education, .objection, .solution, .cta-section, .authority, .urgency {
        padding: 60px 0;
    }

    .identification-card {
        padding: 30px;
    }

    .card-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .education-grid {
        grid-template-columns: 1fr;
    }

    .education-item {
        padding: 20px;
    }

    .warning-box {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .testimonial-quote {
        font-size: 1.2rem;
        padding: 20px;
    }

    .solution-item {
        padding: 25px;
    }

    .location-badge {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    /* Authority Section Responsive */
    .authority-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-card {
        padding: 30px 20px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .authority-credentials {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .credential-card {
        padding: 25px;
    }

    .credential-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .authority-badges {
        gap: 15px;
    }

    .badge-item {
        padding: 10px 18px;
        font-size: 0.85rem;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float-btn {
        padding: 12px 16px;
    }

    .whatsapp-float-text {
        display: none !important;
    }

    .whatsapp-mini-chat {
        width: 300px;
        right: 15px;
        bottom: 85px;
    }

    .btn-whatsapp {
        padding: 16px 28px;
        font-size: 1rem;
    }

    .btn-large {
        padding: 18px 35px;
        font-size: 1.05rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.25;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title-center {
        font-size: 1.6rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .check-list li {
        font-size: 0.95rem;
    }

    .education-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .solution-item-icon {
        width: 45px;
        height: 45px;
    }

    .cta-title {
        font-size: 1.6rem;
    }

    .urgency-highlight {
        font-size: 1.1rem !important;
    }

    /* Authority Section Mobile */
    .authority-label {
        font-size: 0.75rem;
        padding: 6px 16px;
    }

    .authority-subtitle {
        font-size: 1rem;
    }

    .stat-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    .credential-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .credential-icon {
        margin: 0 auto;
    }

    .authority-badges {
        flex-direction: column;
        align-items: center;
    }

    .badge-item {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}
