/* EVO Certificados - CSS Styles */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Colors */
    --primary: 131, 195, 58; /* #83C33A */
    --primary-light: 151, 205, 88;
    --primary-dark: 111, 175, 28;
    --primary-foreground: 255, 255, 255;
    
    /* Background & Surface */
    --background: 255, 255, 255;
    --background-secondary: 250, 251, 252;
    --foreground: 30, 41, 59;
    
    /* Card & Components */
    --card: 255, 255, 255;
    --card-foreground: 30, 41, 59;
    --card-border: 226, 232, 240;
    
    /* Muted Colors */
    --muted: 241, 245, 249;
    --muted-foreground: 100, 116, 139;
    
    /* Accent Colors */
    --accent: 248, 254, 244;
    --accent-foreground: 46, 125, 50;
    
    /* Interactive States */
    --border: 226, 232, 240;
    --input: 241, 245, 249;
    --ring: 131, 195, 58;
    
    /* Semantic Colors */
    --success: 34, 139, 34;
    --success-foreground: 255, 255, 255;
    --warning: 255, 193, 7;
    --warning-foreground: 255, 255, 255;
    --destructive: 239, 68, 68;
    --destructive-foreground: 255, 255, 255;
    
    /* Spacing & Layout */
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 16px;
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: rgb(var(--foreground));
    background-color: rgb(var(--background));
    scroll-behavior: smooth;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    color: rgb(var(--foreground));
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-subtitle {
    font-size: 1.25rem;
    color: rgb(var(--muted-foreground));
    text-align: center;
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.7;
}

.text-gradient {
    background: linear-gradient(135deg, rgb(var(--primary)), rgb(var(--primary-light)));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 500;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    line-height: 1;
    gap: 0.5rem;
}

.btn-primary {
    background-color: rgb(var(--primary));
    color: rgb(var(--primary-foreground));
    box-shadow: 0 4px 6px -1px rgba(var(--primary), 0.2);
}

.btn-primary:hover {
    background-color: rgb(var(--primary-dark));
    box-shadow: 0 10px 15px -3px rgba(var(--primary), 0.3);
    transform: translateY(-1px);
}

.btn-outline {
    background-color: transparent;
    color: rgb(var(--primary));
    border: 2px solid rgb(var(--primary));
}

.btn-outline:hover {
    background-color: rgb(var(--primary));
    color: rgb(var(--primary-foreground));
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgb(var(--border));
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

@media (min-width: 1024px) {
    .header-content {
        height: 5rem;
    }
}

.logo-img {
    height: 2rem;
    width: auto;
}

@media (min-width: 1024px) {
    .logo-img {
        height: 2.5rem;
    }
}

/* Navigation */
.nav-desktop {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .nav-desktop {
        display: flex;
    }
}

.nav-link {
    color: rgb(var(--foreground));
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: rgb(var(--primary));
}

/* Header CTA */
.header-cta {
    display: none;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 1024px) {
    .header-cta {
        display: flex;
    }
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgb(var(--muted-foreground));
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: rgb(var(--primary));
}

/* Mobile Menu */
.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    color: rgb(var(--foreground));
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.mobile-menu-btn:hover {
    color: rgb(var(--primary));
}

@media (min-width: 1024px) {
    .mobile-menu-btn {
        display: none;
    }
}

.nav-mobile {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: rgb(var(--background));
    border-bottom: 1px solid rgb(var(--border));
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    animation: fadeIn 0.3s ease;
}

.nav-mobile.active {
    display: block;
}

.mobile-nav-content {
    padding: 1rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-link {
    color: rgb(var(--foreground));
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: rgb(var(--primary));
}

.mobile-cta {
    padding-top: 1rem;
    border-top: 1px solid rgb(var(--border));
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Hero Section */
.hero {
    padding-top: 5rem;
    padding-bottom: 4rem;
    position: relative;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .hero {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgb(var(--background)) 0%, rgb(var(--background-secondary)) 100%);
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 18rem;
    height: 18rem;
    background: radial-gradient(circle, rgba(var(--primary), 0.1) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(64px);
}

.hero-bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24rem;
    height: 24rem;
    background: radial-gradient(circle, rgba(var(--primary), 0.05) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(64px);
}

.hero-content {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(var(--primary), 0.1);
    color: rgb(var(--primary));
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgb(var(--muted-foreground));
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.quick-benefits {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .quick-benefits {
        grid-template-columns: repeat(3, 1fr);
    }
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.benefit-icon {
    width: 3rem;
    height: 3rem;
    background-color: rgba(var(--primary), 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(var(--primary));
    flex-shrink: 0;
}

.benefit-text h3 {
    font-weight: 600;
    color: rgb(var(--foreground));
    margin-bottom: 0.25rem;
}

.benefit-text p {
    font-size: 0.875rem;
    color: rgb(var(--muted-foreground));
}

/* Hero Image */
.hero-image {
    position: relative;
    animation: slideUp 0.6s ease;
}

.hero-card {
    background-color: rgb(var(--card));
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    position: relative;
    z-index: 10;
    animation: float 6s ease-in-out infinite;
}

.hero-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgb(var(--primary)), rgb(var(--primary-light)));
    border-radius: var(--radius-lg);
    transform: rotate(3deg) scale(1.05);
    opacity: 0.2;
    z-index: -1;
}

.certificate-preview {
    aspect-ratio: 1;
    background: linear-gradient(135deg, rgb(var(--primary)), rgb(var(--primary-light)));
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgb(var(--primary-foreground));
    margin-bottom: 1.5rem;
    text-align: center;
}

.certificate-preview i {
    width: 4rem;
    height: 4rem;
    margin-bottom: 1rem;
}

.certificate-preview h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: rgb(var(--primary-foreground));
    margin-bottom: 0.5rem;
}

.certificate-preview p {
    color: rgba(var(--primary-foreground), 0.8);
}

.price-display {
    text-align: center;
}

.promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(var(--success), 0.1);
    color: rgb(var(--success));
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.dot {
    width: 0.5rem;
    height: 0.5rem;
    background-color: rgb(var(--success));
    border-radius: 50%;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: rgb(var(--foreground));
    margin-bottom: 0.5rem;
}

.cents {
    font-size: 1.25rem;
    color: rgb(var(--muted-foreground));
}

.price-info {
    color: rgb(var(--muted-foreground));
}

/* Benefits Section */
.benefits {
    padding: 4rem 0;
    background-color: rgb(var(--background-secondary));
}

@media (min-width: 1024px) {
    .benefits {
        padding: 6rem 0;
    }
}

.section-header {
    margin-bottom: 4rem;
}

.benefits-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 5rem;
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.benefit-card {
    background-color: rgb(var(--card));
    border: 1px solid rgb(var(--card-border));
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.benefit-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.benefit-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-color: rgba(var(--primary), 0.3);
    transform: translateY(-4px);
}

.benefit-card-icon {
    width: 4rem;
    height: 4rem;
    background-color: rgba(var(--primary), 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: rgb(var(--primary));
    transition: background-color 0.3s ease;
}

.benefit-card:hover .benefit-card-icon {
    background-color: rgba(var(--primary), 0.2);
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: rgb(var(--muted-foreground));
    line-height: 1.6;
}

/* Stats */
.stats {
    display: grid;
    gap: 2rem;
}

@media (min-width: 640px) {
    .stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: rgb(var(--primary));
    margin-bottom: 0.5rem;
}

@media (min-width: 1024px) {
    .stat-number {
        font-size: 3rem;
    }
}

.stat-item p {
    color: rgb(var(--muted-foreground));
}

/* Products Section */
.products {
    padding: 4rem 0;
    background-color: rgb(var(--background));
}

@media (min-width: 1024px) {
    .products {
        padding: 6rem 0;
    }
}

.products-grid {
    display: grid;
    gap: 2rem;
    max-width: 64rem;
    margin: 0 auto 5rem;
}

@media (min-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.product-card {
    background-color: rgb(var(--card));
    border: 1px solid rgb(var(--card-border));
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
}

.product-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.product-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: rgba(var(--primary), 0.3);
    transform: translateY(-4px);
}

.product-card.popular {
    border-color: rgb(var(--primary));
}

.popular-badge {
    position: absolute;
    top: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgb(var(--primary));
    color: rgb(var(--primary-foreground));
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

.product-header {
    margin-bottom: 1.5rem;
}

.product-icon {
    width: 4rem;
    height: 4rem;
    background-color: rgba(var(--primary), 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: rgb(var(--primary));
}

.product-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.product-header p {
    color: rgb(var(--muted-foreground));
    margin-bottom: 1.5rem;
}

.product-price {
    text-align: center;
    margin-bottom: 1.5rem;
}

.product-price .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: rgb(var(--foreground));
    margin-bottom: 0.5rem;
}

.product-price p {
    color: rgb(var(--muted-foreground));
}

.product-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: rgb(var(--muted-foreground));
}

.product-features i {
    color: rgb(var(--primary));
    flex-shrink: 0;
}

.product-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
    font-size: 0.875rem;
    color: rgb(var(--muted-foreground));
}

.product-info span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Process Steps */
.process {
    margin-top: 5rem;
}

.process-title {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
}

.process-steps {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .process-steps {
        grid-template-columns: repeat(3, 1fr);
    }
}

.process-step {
    text-align: center;
}

.step-number {
    width: 4rem;
    height: 4rem;
    background-color: rgba(var(--primary), 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: rgb(var(--primary));
}

.process-step h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.process-step p {
    font-size: 0.875rem;
    color: rgb(var(--muted-foreground));
}

/* Partners Section */
.partners {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(var(--primary), 0.05), rgb(var(--background-secondary)));
}

@media (min-width: 1024px) {
    .partners {
        padding: 6rem 0;
    }
}

.partners-content {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .partners-content {
        grid-template-columns: 1fr 1fr;
    }
}

.partners-benefits {
    margin: 2rem 0;
}

.partner-benefit {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.partner-benefit .benefit-icon {
    width: 3rem;
    height: 3rem;
    background-color: rgba(var(--primary), 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(var(--primary));
    flex-shrink: 0;
}

.partner-benefit h3 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.partner-benefit p {
    color: rgb(var(--muted-foreground));
}

.partner-card {
    background-color: rgb(var(--card));
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    position: relative;
}

.partner-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgb(var(--primary)), rgb(var(--primary-light)));
    border-radius: var(--radius-lg);
    transform: rotate(-3deg) scale(1.05);
    opacity: 0.1;
    z-index: -1;
}

.card-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.card-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.card-header p {
    color: rgb(var(--muted-foreground));
}

.card-benefits {
    margin-bottom: 1.5rem;
}

.card-benefit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background-color: rgba(var(--primary), 0.05);
    border-radius: var(--radius);
    margin-bottom: 1rem;
}

.card-benefit strong {
    color: rgb(var(--primary));
    font-weight: 700;
}

.card-cta {
    padding: 1rem;
    background: linear-gradient(135deg, rgb(var(--primary)), rgb(var(--primary-light)));
    border-radius: var(--radius);
    text-align: center;
}

.card-cta p {
    color: rgb(var(--primary-foreground));
    font-weight: 500;
    margin: 0;
}

/* Testimonials Section */
.testimonials {
    padding: 4rem 0;
    background-color: rgb(var(--background));
}

@media (min-width: 1024px) {
    .testimonials {
        padding: 6rem 0;
    }
}

.testimonials-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 5rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background-color: rgb(var(--card));
    border: 1px solid rgb(var(--card-border));
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.testimonial-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.avatar {
    width: 3rem;
    height: 3rem;
    background-color: rgb(var(--primary));
    color: rgb(var(--primary-foreground));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.testimonial-header h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.testimonial-header p {
    font-size: 0.875rem;
    color: rgb(var(--muted-foreground));
}

.rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.star {
    width: 1.25rem;
    height: 1.25rem;
    color: #fbbf24;
}

blockquote {
    color: rgb(var(--muted-foreground));
    font-style: italic;
    position: relative;
    margin: 0;
}

blockquote::before {
    content: '"';
    font-size: 2rem;
    color: rgba(var(--primary), 0.2);
    position: absolute;
    top: -0.5rem;
    left: -0.5rem;
}

/* Company Logos */
.company-logos {
    text-align: center;
    margin-bottom: 4rem;
}

.company-logos h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (min-width: 768px) {
    .logos-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background-color: rgba(var(--muted), 0.3);
    border-radius: var(--radius);
    font-size: 1.5rem;
    font-weight: 700;
    color: rgb(var(--muted-foreground));
    transition: all 0.3s ease;
}

.logo-item:hover {
    background-color: rgba(var(--muted), 0.5);
}

/* Trust Indicators */
.trust-indicators {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .trust-indicators {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .trust-indicators {
        grid-template-columns: repeat(4, 1fr);
    }
}

.trust-item {
    text-align: center;
    padding: 1rem;
    opacity: 0;
    transform: translateY(20px);
}

.trust-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.trust-icon {
    width: 4rem;
    height: 4rem;
    background-color: rgba(var(--success), 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    font-size: 2rem;
}

.trust-item h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.trust-item p {
    font-size: 0.875rem;
    color: rgb(var(--muted-foreground));
}

/* Footer */
.footer {
    background-color: rgb(var(--foreground));
    color: rgb(var(--background));
}

.footer-content {
    padding: 4rem 0;
}

.footer-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}

.footer-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: rgb(var(--background));
}

.footer-logo {
    height: 2.5rem;
    width: auto;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
}

.footer-desc {
    color: #d1d5db;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(var(--background));
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: rgb(var(--primary));
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: rgb(var(--primary));
}

.contact-info {
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.contact-item i {
    color: rgb(var(--primary));
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.contact-item p {
    color: #d1d5db;
    margin-bottom: 0.25rem;
}

.contact-item small {
    color: #9ca3af;
    font-size: 0.875rem;
}

.security-badges h4 {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: rgb(var(--background));
}

.badges {
    display: flex;
    gap: 0.5rem;
}

.badge {
    padding: 0.25rem 0.75rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
    }
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 0.875rem;
}

.footer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: #9ca3af;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 50;
}

.whatsapp-btn {
    width: 3.5rem;
    height: 3.5rem;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    box-shadow: 0 10px 15px -3px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    box-shadow: 0 20px 25px -5px rgba(37, 211, 102, 0.4);
    transform: scale(1.1);
}

.whatsapp-tooltip {
    position: absolute;
    bottom: 4rem;
    right: 0;
    background-color: #1f2937;
    color: white;
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    font-size: 0.875rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    right: 1rem;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #1f2937;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Utility Classes */
.animate {
    animation: fadeIn 0.6s ease forwards;
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.875rem;
    }
    
    .section-subtitle {
        font-size: 1.125rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.btn:focus,
.nav-link:focus,
.mobile-nav-link:focus {
    outline: 2px solid rgb(var(--primary));
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .header,
    .whatsapp-float {
        display: none;
    }
}