/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --background: hsl(0, 0%, 100%);
    --foreground: hsl(0, 0%, 8%);
    --card: hsl(0, 0%, 100%);
    --card-foreground: hsl(0, 0%, 8%);
    --primary: hsl(48, 95%, 53%);
    --primary-foreground: hsl(0, 0%, 8%);
    --secondary: hsl(0, 0%, 96%);
    --secondary-foreground: hsl(0, 0%, 8%);
    --muted: hsl(45, 20%, 95%);
    --muted-foreground: hsl(0, 0%, 40%);
    --accent: hsl(48, 95%, 53%);
    --accent-foreground: hsl(0, 0%, 8%);
    --border: hsl(45, 20%, 90%);
    --dark: hsl(0, 0%, 8%);
    --dark-soft: hsl(0, 0%, 15%);
    --yellow-dark: hsl(45, 100%, 45%);
    --yellow-glow: hsl(48, 100%, 60%);
    --white: hsl(0, 0%, 100%);
    --whatsapp: hsl(142, 70%, 45%);
    --whatsapp-hover: hsl(142, 70%, 38%);
    
    --gradient-hero: linear-gradient(135deg, hsl(48, 95%, 53%) 0%, hsl(45, 100%, 45%) 100%);
    --gradient-overlay: linear-gradient(90deg, hsla(0, 0%, 0%, 0.7) 0%, hsla(0, 0%, 0%, 0.3) 50%, transparent 100%);
    
    --shadow-soft: 0 4px 20px -4px hsla(48, 95%, 53%, 0.3);
    --shadow-card: 0 10px 40px -10px hsla(0, 0%, 0%, 0.1);
    --shadow-elevated: 0 20px 60px -20px hsla(0, 0%, 0%, 0.2);
    
    --radius: 0.75rem;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: -0.025em;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Utility Classes */
.text-gradient {
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient-hero {
    background: var(--gradient-hero);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: var(--gradient-hero);
    color: var(--primary-foreground);
    box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px -5px hsla(48, 95%, 53%, 0.4);
}

.btn-whatsapp {
    background-color: var(--whatsapp);
    color: var(--white);
}

.btn-whatsapp:hover {
    background-color: var(--whatsapp-hover);
}

.btn-hero {
    background: var(--gradient-hero);
    color: var(--primary-foreground);
    padding: 1rem 2rem;
    font-size: 1rem;
    box-shadow: var(--shadow-soft);
}

.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px -5px hsla(48, 95%, 53%, 0.5);
}

.btn-hero-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-hero-outline:hover {
    background: var(--white);
    color: var(--foreground);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-xl {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: hsla(0, 0%, 100%, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5rem;
}

.header-logo img {
    height: 3rem;
    width: auto;
}

.header-nav {
    display: none;
    align-items: center;
    gap: 2rem;
}

.header-nav a {
    color: hsla(0, 0%, 8%, 0.8);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.header-cta {
    display: none;
    align-items: center;
    gap: 0.75rem;
}

.mobile-menu-btn {
    display: flex;
    padding: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--foreground);
}

.mobile-menu {
    display: none;
    padding: 1rem 0;
    border-top: 1px solid var(--border);
    animation: fadeIn 0.3s ease;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-menu nav a {
    color: hsla(0, 0%, 8%, 0.8);
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

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

@media (min-width: 768px) {
    .header-nav {
        display: flex;
    }
    
    .header-cta {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: none;
    }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 5rem;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-overlay);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 42rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: hsla(48, 95%, 53%, 0.2);
    backdrop-filter: blur(4px);
    border: 1px solid hsla(48, 95%, 53%, 0.3);
    border-radius: 9999px;
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
    animation: fadeIn 0.5s ease;
}

.hero-badge i {
    color: var(--primary);
    width: 1rem;
    height: 1rem;
}

.hero-badge span {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--white);
}

.hero h1 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1rem;
    animation: fadeIn 0.5s ease 0.1s both;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: hsla(0, 0%, 100%, 0.9);
    margin-bottom: 2rem;
    animation: fadeIn 0.5s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    animation: fadeIn 0.5s ease 0.3s both;
}

.hero-trust {
    margin-top: 3rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: hsla(0, 0%, 100%, 0.7);
    font-size: 0.875rem;
    animation: fadeIn 0.5s ease 0.4s both;
}

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

.hero-trust-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--primary);
    animation: pulse 3s ease-in-out infinite;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.hero-scroll a {
    color: hsla(0, 0%, 100%, 0.6);
}

.hero-scroll i {
    width: 2rem;
    height: 2rem;
}

@media (min-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-buttons {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .hero h1 {
        font-size: 3.75rem;
    }
}

/* Benefits Section */
.benefits {
    padding: 5rem 0;
    background: var(--secondary);
}

.section-header {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 4rem;
}

.section-label {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--foreground);
    margin-bottom: 1.5rem;
}

.section-subtitle {
    color: var(--muted-foreground);
    font-size: 1.125rem;
}

.benefits-grid {
    display: grid;
    gap: 1.5rem;
}

.benefit-card {
    background: var(--card);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    box-shadow: var(--shadow-elevated);
    transform: translateY(-4px);
}

.benefit-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

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

.benefit-icon i {
    width: 1.75rem;
    height: 1.75rem;
    color: var(--primary-foreground);
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.75rem;
}

.benefit-card p {
    color: var(--muted-foreground);
    line-height: 1.7;
}

@media (min-width: 768px) {
    .benefits {
        padding: 8rem 0;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 3rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Insurers Section */
.insurers {
    padding: 5rem 0;
    background: var(--background);
}

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

.insurer-card {
    background: var(--card);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-card);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 7.5rem;
    transition: all 0.3s ease;
}

.insurer-card:hover {
    box-shadow: var(--shadow-elevated);
}

.insurer-card span {
    font-size: 1.125rem;
    font-weight: 700;
    text-align: center;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.insurer-card:hover span {
    opacity: 1;
}

.insurers-note {
    margin-top: 3rem;
    text-align: center;
    color: var(--muted-foreground);
}

@media (min-width: 768px) {
    .insurers {
        padding: 8rem 0;
    }
    
    .insurers-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
    
    .insurer-card {
        padding: 2rem;
    }
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, hsla(48, 95%, 53%, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.contact-grid {
    display: grid;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.contact-content h2 {
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.contact-content p {
    color: hsla(0, 0%, 100%, 0.7);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

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

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

.contact-item-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: hsla(48, 95%, 53%, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item-icon i {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary);
}

.contact-item h4 {
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: hsla(0, 0%, 100%, 0.7);
    font-size: 1rem;
    margin: 0;
}

.contact-card {
    background: hsla(0, 0%, 100%, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid hsla(0, 0%, 100%, 0.1);
    border-radius: 1.5rem;
    padding: 2rem;
}

.contact-card-header {
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid hsla(0, 0%, 100%, 0.1);
    margin-bottom: 1.5rem;
}

.contact-card-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.contact-card-icon i {
    width: 2rem;
    height: 2rem;
    color: var(--primary-foreground);
}

.contact-card-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.contact-card-header p {
    color: hsla(0, 0%, 100%, 0.7);
    font-size: 0.875rem;
    margin: 0;
}

.contact-card-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-card-buttons .btn {
    width: 100%;
}

@media (min-width: 768px) {
    .contact {
        padding: 8rem 0;
    }
    
    .contact-content h2 {
        font-size: 2.25rem;
    }
    
    .contact-card {
        padding: 3rem;
    }
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
    
    .contact-content h2 {
        font-size: 3rem;
    }
}

/* Footer */
.footer {
    background: var(--dark);
    padding: 4rem 0;
}

.footer-grid {
    display: grid;
    gap: 2.5rem;
}

.footer-brand p {
    color: hsla(0, 0%, 100%, 0.7);
    margin-bottom: 1.5rem;
    max-width: 28rem;
}

.footer-brand img {
    height: 3rem;
    width: auto;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

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

.footer-social a {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: hsla(0, 0%, 100%, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary);
}

.footer-social a i {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--white);
}

.footer-social a:hover i {
    color: var(--primary-foreground);
}

.footer h4 {
    color: var(--white);
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: hsla(0, 0%, 100%, 0.7);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact li i {
    width: 1rem;
    height: 1rem;
    color: hsla(0, 0%, 100%, 0.7);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid hsla(0, 0%, 100%, 0.1);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: hsla(0, 0%, 100%, 0.5);
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}
