/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1e3a5f;
    --primary-dark: #0f1f35;
    --primary-light: #2d4a6b;
    --secondary-color: #3a5f7f;
    --accent-color: #4a6fa5;
    --text-dark: #1a1a1a;
    --text-medium: #2d2d2d;
    --text-light: #5a5a5a;
    --bg-light: #f5f7fa;
    --bg-white: #ffffff;
    --bg-dark: #1a1a1a;
    --border-color: #d1d5db;
    --success-color: #2563eb;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    overflow-x: hidden;
    background-color: var(--bg-white);
    font-weight: 400;
}

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

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Crimson Text', serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.8;
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--primary-color);
    color: white;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 9999;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--border-color);
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Crimson Text', serif;
}

/* Logo Text Styling */
.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-name {
    font-family: 'Crimson Text', Georgia, serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 3px;
}

.logo-sub {
    font-family: 'Crimson Text', Georgia, serif;
    font-size: 0.85rem;
    font-weight: 400;
    color: #888;
    letter-spacing: 1px;
    margin-top: 2px;
}

.footer-logo-text .logo-name {
    color: #c9b896;
}

.footer-logo-text .logo-sub {
    color: #999;
}

.nav-brand span {
    white-space: nowrap;
}

.nav-brand i {
    font-size: 1.75rem;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-medium);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    font-size: 0.95rem;
}

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

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

.nav-menu a:hover {
    color: var(--primary-color);
}

.btn-nav {
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: white !important;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-nav:hover {
    background: var(--primary-dark);
    color: white !important;
    transform: translateY(-1px);
}

.btn-nav::after {
    display: none;
}

/* Nav Social Icons */
.nav-social {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-left: 0.5rem;
    padding-left: 1rem;
    border-left: 1px solid var(--border-color);
}

.nav-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-light);
    color: var(--text-medium);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.nav-social a:hover {
    transform: translateY(-2px);
}

.nav-social a[aria-label="Facebook"]:hover {
    background: #1877f2;
    color: white;
}

.nav-social a[aria-label="Instagram"]:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
}

.nav-social a[aria-label="WhatsApp"]:hover {
    background: #25d366;
    color: white;
}

.nav-social a::after {
    display: none;
    box-shadow: var(--shadow-md);
}

.btn-nav::after {
    display: none;
}

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

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 5rem;
    overflow: hidden;
    background: linear-gradient(135deg, #e8f0f8 0%, #f0f5fa 50%, #e8f0f8 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

/* Efecto Lámpara de Lava - Blobs animados */
.hero-lava-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.6;
    animation: lavaFloat 20s ease-in-out infinite;
}

.hero-lava-blob-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(30, 58, 95, 0.8) 0%, rgba(30, 58, 95, 0.4) 50%, transparent 100%);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
    animation-duration: 25s;
}

.hero-lava-blob-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(45, 74, 107, 0.7) 0%, rgba(45, 74, 107, 0.3) 50%, transparent 100%);
    top: 20%;
    right: -150px;
    animation-delay: -5s;
    animation-duration: 30s;
}

.hero-lava-blob-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(74, 111, 165, 0.6) 0%, rgba(74, 111, 165, 0.3) 50%, transparent 100%);
    bottom: 10%;
    left: 10%;
    animation-delay: -10s;
    animation-duration: 22s;
}

.hero-lava-blob-4 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(30, 58, 95, 0.65) 0%, rgba(30, 58, 95, 0.25) 50%, transparent 100%);
    bottom: -50px;
    right: 20%;
    animation-delay: -15s;
    animation-duration: 28s;
}

.hero-lava-blob-5 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(58, 95, 140, 0.7) 0%, rgba(58, 95, 140, 0.3) 50%, transparent 100%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -8s;
    animation-duration: 35s;
}

.hero-lava-blob-6 {
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(45, 74, 107, 0.6) 0%, rgba(45, 74, 107, 0.25) 50%, transparent 100%);
    top: 70%;
    left: -80px;
    animation-delay: -12s;
    animation-duration: 26s;
}

@keyframes lavaFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        border-radius: 50% 40% 60% 50%;
    }
    25% {
        transform: translate(30px, -50px) scale(1.1);
        border-radius: 60% 50% 40% 60%;
    }
    50% {
        transform: translate(-20px, 30px) scale(0.9);
        border-radius: 40% 60% 50% 40%;
    }
    75% {
        transform: translate(40px, 20px) scale(1.05);
        border-radius: 50% 40% 60% 50%;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.1) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(30, 58, 95, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(45, 74, 107, 0.08) 0%, transparent 50%);
    opacity: 0.5;
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem 2rem 5rem 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: white;
    border-radius: 4px;
    box-shadow: var(--shadow-md);
    margin-bottom: 2.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
    border: 1px solid var(--border-color);
}

.hero-badge i {
    color: var(--primary-color);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
    padding: 0 1rem;
}

.title-line {
    display: block;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.title-highlight {
    display: block;
    color: var(--primary-color);
    padding-bottom: 0;
    margin-bottom: 0;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    line-height: 1.8;
    font-weight: 400;
    padding: 0 1.5rem;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
    padding: 0 1rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: var(--text-medium);
    font-size: 0.95rem;
}

.hero-feature i {
    color: var(--success-color);
    font-size: 1.125rem;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    padding: 0 1rem;
}

.btn {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: var(--primary-dark);
}

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

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.hero-trust {
    margin-top: 4rem;
    padding: 0 1rem;
}

.trust-text {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: white;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-medium);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.trust-badge i {
    color: var(--primary-color);
}

.hero-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: white;
    clip-path: polygon(0 50%, 100% 0%, 100% 100%, 0% 100%);
    z-index: 10;
    pointer-events: none;
}

/* ============================================
   WHY SECTION
   ============================================ */
.why-section {
    padding: 8rem 0 6rem 0;
    background: white;
    position: relative;
    z-index: 1;
}

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

.why-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
    z-index: 1;
    margin-bottom: 0;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
    background: white;
    z-index: 10;
    position: relative;
}

.why-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: var(--primary-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
    flex-shrink: 0;
}

.why-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    line-height: 1.3;
}

.why-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
    flex-grow: 1;
}

/* ============================================
   COVERAGE SECTION (SERVICES)
   ============================================ */
.coverage-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

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

.coverage-card {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid var(--border-color);
}

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

.coverage-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.02);
}

.coverage-card.featured:hover {
    transform: scale(1.02) translateY(-5px);
}

.coverage-badge {
    position: absolute;
    top: -15px;
    right: 2rem;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.coverage-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.coverage-header i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.coverage-header h3 {
    font-size: 1.75rem;
    color: var(--text-dark);
}

.coverage-list {
    list-style: none;
}

.coverage-list li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-medium);
    font-weight: 400;
}

.coverage-list i {
    color: var(--success-color);
    font-size: 1.125rem;
}

/* ============================================
   BENEFITS SECTION
   ============================================ */
.benefits-section {
    padding: 6rem 0;
    background: white;
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.benefits-text {
    text-align: left;
}

.benefits-text .section-header {
    text-align: left;
    margin-bottom: 2rem;
}

.benefits-description {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.benefit-content h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

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

.benefits-visual {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.visual-card {
    background: var(--primary-color);
    padding: 2rem;
    border-radius: 8px;
    color: white;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.visual-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.visual-card h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: white;
}

.visual-card p {
    opacity: 0.9;
    font-size: 1rem;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

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

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.testimonial-rating i {
    color: var(--accent-color);
    font-size: 1.125rem;
}

.testimonial-text {
    font-size: 1.125rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

.author-info h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.author-info span {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* ============================================
   QUOTE SECTION (CONTACT)
   ============================================ */
.quote-section {
    padding: 6rem 0;
    background: var(--primary-color);
    color: white;
}

.quote-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.quote-text .section-tag {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.quote-text .section-title {
    color: white;
    margin-bottom: 1.5rem;
}

.quote-description {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.8;
}

.quote-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quote-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
}

.quote-feature i {
    color: white;
    font-size: 1.25rem;
}

.quote-form-container {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-xl);
}

.quote-form h3 {
    color: var(--text-dark);
    font-size: 1.75rem;
    margin-bottom: 2rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.875rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.1);
}

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

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

.form-note {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--text-light);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-note i {
    color: var(--primary-color);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    padding: 6rem 0;
    background: white;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-light);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(30, 58, 95, 0.03);
}

.faq-question h3 {
    font-size: 1.125rem;
    color: var(--text-dark);
    font-weight: 600;
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 4rem 0 2rem;
}

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

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Crimson Text', serif;
}

.footer-brand span {
    color: white;
}

.footer-brand i {
    font-size: 1.75rem;
    color: var(--accent-color);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-section h4 {
    color: white;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

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

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-section ul li i {
    margin-right: 0.5rem;
    color: var(--accent-color);
    width: 20px;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

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

.footer-dev {
    margin-top: 0.75rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-dev a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-dev a:hover {
    color: #c9b896;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        padding: 2rem;
        transition: left 0.3s ease;
        box-shadow: var(--shadow-lg);
        z-index: 9998;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }
    
    .nav-social {
        flex-direction: row;
        justify-content: center;
        margin: 1.5rem 0 0 0;
        padding: 1rem 0 0 0;
        border-left: none;
        border-top: 1px solid var(--border-color);
        width: 100%;
    }
    
    .nav-social a {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .hero-content {
        padding: 2rem 1.5rem 4rem 1.5rem;
    }

    .hero-badge {
        margin-bottom: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
        padding: 0;
    }

    .hero-subtitle {
        font-size: 1.125rem;
        margin-bottom: 2.5rem;
        padding: 0 0.5rem;
    }

    .hero-features {
        margin-bottom: 2.5rem;
        gap: 1.5rem;
    }

    .hero-buttons {
        margin-bottom: 3rem;
        gap: 1rem;
    }

    .hero-trust {
        margin-top: 3rem;
    }

    .benefits-content,
    .quote-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

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

    .why-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .why-card {
        min-height: auto;
        margin-bottom: 0;
    }

    .why-card:hover {
        transform: translateY(-5px);
        z-index: 5;
    }
}

@media (max-width: 640px) {
    .hero {
        padding-top: 90px;
        padding-bottom: 4rem;
    }

    .hero-content {
        padding: 2rem 1rem 3.5rem 1rem;
    }

    .hero-badge {
        margin-bottom: 1.5rem;
        padding: 0.625rem 1.25rem;
        font-size: 0.8rem;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 1.25rem;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
        padding: 0;
        line-height: 1.7;
    }

    .hero-features {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        margin-bottom: 2.5rem;
        gap: 0.75rem;
    }

    .btn {
        width: 100%;
        padding: 0.875rem 2rem;
    }

    .hero-trust {
        margin-top: 2.5rem;
    }

    .trust-text {
        margin-bottom: 1.25rem;
    }

    .trust-badges {
        gap: 1rem;
    }

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

    .coverage-card.featured {
        transform: scale(1);
    }

    .coverage-card.featured:hover {
        transform: translateY(-5px);
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

/* ============================================
   CALCULATOR SECTION
   ============================================ */
.calculator-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, #e8edf3 100%);
}

.calculator-container {
    max-width: 600px;
    margin: 0 auto 3rem;
}

.calculator-form-wrapper {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
}

.calculator-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--bg-light);
}

.calculator-header i {
    font-size: 2rem;
    color: var(--primary-color);
}

.calculator-header h3 {
    margin: 0;
    color: var(--text-dark);
    font-size: 1.5rem;
}

.calculator-form .form-group {
    margin-bottom: 1.25rem;
}

.calculator-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

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

.calculator-form input:focus,
.calculator-form select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(30, 58, 95, 0.1);
}

.calculator-form .form-hint {
    display: block;
    margin-top: 0.375rem;
    font-size: 0.8rem;
    color: var(--text-light);
}

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

.checkbox-group {
    margin-top: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: 500 !important;
    color: var(--text-medium) !important;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    accent-color: var(--primary-color);
    transform: scale(1.2);
}

.calculator-btn {
    margin-top: 1rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Calculator Results */
.calculator-results {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    animation: fadeInUp 0.5s ease-out;
}

.calculator-results.hidden {
    display: none;
}

.results-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.results-header i {
    font-size: 1.75rem;
}

.results-header h3 {
    margin: 0;
    font-size: 1.4rem;
}

.results-amount {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 1.5rem;
}

.amount-label {
    display: block;
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.amount-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.results-details {
    background: var(--bg-light);
    border-radius: 10px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.detail-item:last-child {
    border-bottom: none;
}

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

.detail-value {
    font-weight: 600;
    color: var(--text-dark);
}

.results-disclaimer {
    display: flex;
    gap: 0.75rem;
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.results-disclaimer i {
    color: #856404;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.results-disclaimer p {
    margin: 0;
    font-size: 0.875rem;
    color: #856404;
    line-height: 1.5;
}

/* Lead Capture Form */
.lead-capture {
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f0fa 100%);
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.lead-capture h4 {
    margin: 0 0 0.5rem;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.lead-capture > p {
    margin: 0 0 1rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.lead-form .form-group {
    margin-bottom: 0.75rem;
}

.lead-form input,
.lead-form select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.lead-form input:focus,
.lead-form select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.1);
}

.recalculate-btn {
    margin-top: 0.5rem;
}

/* Calculator Info Cards */
.calculator-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.info-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.info-card h4 {
    margin: 0 0 0.5rem;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.info-card p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Calculator Responsive */
@media (max-width: 768px) {
    .calculator-section {
        padding: 4rem 0;
    }
    
    .calculator-form-wrapper,
    .calculator-results {
        padding: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .amount-value {
        font-size: 2rem;
    }
    
    .calculator-info {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4), 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5), 0 4px 10px rgba(0, 0, 0, 0.25);
    animation: none;
}

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

.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background: white;
    color: var(--text-dark);
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 8px;
    border-style: solid;
    border-color: transparent transparent transparent white;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    right: 70px;
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4), 0 2px 5px rgba(0, 0, 0, 0.2), 0 0 0 0 rgba(37, 211, 102, 0.4);
    }
    70% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4), 0 2px 5px rgba(0, 0, 0, 0.2), 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4), 0 2px 5px rgba(0, 0, 0, 0.2), 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* WhatsApp responsive */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 28px;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
}
