/* Reset & Base */
:root {
    --primary: #132D6B;
    --primary-dark: #0a1f4a;
    --primary-light: #1a3d8f;
    --primary-grad-start: #132D6B;
    --primary-grad-end: #1a4d9e;
    --black: #000000;
    --white: #FFFFFF;
    --gray-light: #F3F4F6;
    --gray-medium: #9CA3AF;
    --gray-dark: #4B5563;
    --success: #10B981;
    --whatsapp: #25D366;
    --whatsapp-dark: #128C7E;
    
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 30px rgba(19, 45, 107, 0.4);
    --shadow-glow-whatsapp: 0 0 30px rgba(37, 211, 102, 0.4);
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    color: var(--black);
    background-color: var(--white);
    line-height: 1.5;
    overflow-x: hidden;
}

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

/* Gradients */
.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, #2563eb 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    text-align: center;
    color: var(--gray-dark);
    margin-bottom: 48px;
    font-size: 1.125rem;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-sm);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

.logo-link {
    text-decoration: none;
}

.logo-img {
    height: 40px;
    width: auto;
}

.logo-text-fallback {
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--primary);
}

.logo-pro {
    font-weight: 800;
    color: var(--black);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--black);
    transition: var(--transition);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-list {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-link {
    text-decoration: none;
    color: var(--gray-dark);
    font-weight: 500;
    transition: var(--transition);
    font-size: 0.9375rem;
}

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

.btn-whatsapp-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--whatsapp);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: var(--transition);
}

.btn-whatsapp-nav:hover {
    background: var(--whatsapp-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-image: url('https://images.unsplash.com/photo-1548839140-29a749e1cf4d?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(19, 45, 107, 0.85) 0%, rgba(0, 0, 0, 0.75) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.875rem;
    margin-bottom: 24px;
}

.hero-title {
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero-highlight {
    background: linear-gradient(135deg, #60A5FA 0%, #93C5FD 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.hero-trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Buttons with effects */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn-ripple {
    position: relative;
    overflow: hidden;
}

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

.btn-ripple:active::after {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.btn-glow {
    animation: glowPulse 2s infinite;
}

@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 0 5px rgba(19, 45, 107, 0.5);
    }
    50% {
        box-shadow: 0 0 25px rgba(19, 45, 107, 0.8);
    }
}

.btn-pulse {
    animation: btnPulse 1.5s infinite;
}

@keyframes btnPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.03);
    }
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

.btn-cta-primary {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    font-size: 1.125rem;
    padding: 16px 40px;
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(245, 158, 11, 0.5);
}

.btn-cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    font-size: 1.125rem;
    padding: 16px 40px;
}

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

.btn-block {
    width: 100%;
}

/* Core Section */
.core-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.core-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: 24px;
    text-decoration: none;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-sm);
}

.core-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.core-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.core-card h3 {
    color: var(--black);
    margin-bottom: 12px;
}

.core-card p {
    color: var(--gray-dark);
    font-size: 0.875rem;
    margin-bottom: 16px;
}

.core-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.875rem;
}

/* Hogar Section */
.hogar-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.hogar-content h3 {
    font-size: 1.75rem;
    margin-bottom: 24px;
}

.benefit-list {
    list-style: none;
    margin-bottom: 32px;
}

.benefit-list li {
    padding: 10px 0;
    font-size: 1rem;
    color: var(--gray-dark);
}

.hogar-image img,
.empresas-image img {
    width: 100%;
    border-radius: 32px;
    box-shadow: var(--shadow-xl);
}

/* Empresas Section */
.empresas-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.empresas-content h2 {
    text-align: left;
    margin-bottom: 16px;
}

.empresas-content p {
    color: var(--gray-dark);
    margin-bottom: 24px;
    font-size: 1.125rem;
}

/* Conversion Section */
.conversion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.conversion-card {
    background: linear-gradient(135deg, var(--gray-light) 0%, var(--white) 100%);
    padding: 32px 20px;
    border-radius: 24px;
    text-decoration: none;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.conversion-card:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-light) 100%);
    box-shadow: var(--shadow-lg);
}

.conversion-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.conversion-card h3 {
    color: var(--black);
    font-size: 1.125rem;
    margin-bottom: 8px;
}

.conversion-card p {
    color: var(--gray-dark);
    font-size: 0.875rem;
}

/* Tech Section */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
}

.tech-card {
    background: var(--white);
    padding: 32px;
    border-radius: 24px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-sm);
}

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

.tech-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.tech-card h3 {
    margin-bottom: 12px;
}

.tech-card p {
    color: var(--gray-dark);
    font-size: 0.875rem;
    margin-bottom: 20px;
}

.tech-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.tech-link:hover {
    transform: translateX(4px);
    display: inline-block;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
}

.benefit-card {
    text-align: center;
    padding: 32px 24px;
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-light) 100%);
    border-radius: 24px;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
}

/* Trust Section */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.trust-card {
    background: var(--white);
    padding: 24px;
    border-radius: 20px;
    text-decoration: none;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.trust-card span {
    font-size: 2rem;
    display: block;
    margin-bottom: 12px;
}

.trust-card h3 {
    font-size: 0.875rem;
    margin-bottom: 0;
    color: var(--gray-dark);
}

/* CTA Strong Section */
.cta-strong-section {
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1548839140-29a749e1cf4d?w=1920&h=600&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 0;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(19, 45, 107, 0.92) 0%, rgba(0, 0, 0, 0.85) 100%);
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
}

.cta-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.cta-trust {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 0.875rem;
    opacity: 0.8;
}

.text-white {
    color: white;
}

/* FAQ */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 16px;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    background: none;
    border: none;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 20px;
}

.faq-answer p {
    color: var(--gray-dark);
    line-height: 1.6;
}

/* Blog Section */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
}

.blog-card {
    background: var(--white);
    padding: 32px;
    border-radius: 24px;
    text-decoration: none;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.blog-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.blog-card h3 {
    font-size: 1.125rem;
    color: var(--black);
    margin-bottom: 8px;
}

.blog-card p {
    color: var(--gray-dark);
    font-size: 0.875rem;
}

/* Contact */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    background: var(--white);
    border-radius: 32px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.contact-info {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 48px;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-info p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-detail a {
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.contact-detail a:hover {
    opacity: 0.8;
}

.contact-hours {
    font-size: 0.875rem;
    opacity: 0.8;
}

.contact-form {
    padding: 48px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    font-size: 1rem;
    font-family: var(--font-family);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(19, 45, 107, 0.1);
}

.form-note {
    font-size: 0.75rem;
    color: var(--gray-medium);
    text-align: center;
    margin-top: 16px;
}

/* Footer */
.footer {
    background: var(--black);
    color: var(--gray-medium);
    padding: 48px 0 24px;
}

.footer-content {
    display: block;
    margin-bottom: 48px;
}

.footer-logo {
    text-align: center;
    margin-bottom: 40px;
}

.footer-logo-img {
    height: 45px;
    width: auto;
    margin-bottom: 16px;
}

.footer-logo-text-fallback {
    font-size: 2rem;
    font-weight: 400;
    color: var(--primary);
}

.footer-logo-pro {
    font-weight: 800;
    color: white;
}

.footer-logo p {
    margin-top: 16px;
    font-size: 0.875rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 32px;
    margin-top: 32px;
}

.footer-links-column h4 {
    color: white;
    margin-bottom: 16px;
    font-size: 0.875rem;
}

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

.footer-links-column ul li {
    margin-bottom: 10px;
}

.footer-links-column ul li a {
    color: var(--gray-medium);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.75rem;
}

.footer-links-column ul li a:hover {
    color: white;
    transform: translateX(4px);
    display: inline-block;
}

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

.footer-bottom a {
    color: var(--gray-medium);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: white;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: var(--whatsapp);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    z-index: 999;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background: var(--whatsapp-dark);
    transform: scale(1.1);
}

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

/* Parallax Effect */
.parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.parallax-element {
    transition: transform 0.3s ease-out;
}

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

.animate-fade-up {
    animation: fadeUp 0.8s ease forwards;
}

/* Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 72px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 72px);
        background: white;
        flex-direction: column;
        padding: 32px;
        transition: left 0.3s ease;
        box-shadow: var(--shadow-lg);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }
    
    .hogar-grid,
    .empresas-grid,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .section {
        padding: 48px 0;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .hero {
        background-attachment: scroll;
    }
    
    .cta-strong-section {
        background-attachment: scroll;
    }
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}
/* Image Placeholder Styles */
.image-placeholder {
    width: 100%;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
}

.image-placeholder:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.image-placeholder svg {
    width: 100%;
    height: auto;
    display: block;
    min-height: 350px;
}

/* Ajustes responsive para imágenes */
@media (max-width: 768px) {
    .image-placeholder svg {
        min-height: 250px;
    }
    
    .hogar-grid,
    .empresas-grid {
        gap: 32px;
    }
}
/* Botón tech elegante */
.btn-tech {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 10px 24px;
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
}

.btn-tech .btn-arrow {
    transition: transform 0.3s ease;
}

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

.btn-tech:hover .btn-arrow {
    transform: translateX(4px);
}

/* Asegurar que el enlace completo no tenga subrayado */
.tech-card {
    text-decoration: none;
    display: block;
}

.tech-card h3 {
    color: var(--black);
    transition: var(--transition);
}

.tech-card:hover h3 {
    color: var(--primary);
}
/* Footer CTA Section */
.footer-cta-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-contact-block {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-contact-icon {
    font-size: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-contact-info h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 4px;
}

.footer-contact-info p {
    color: var(--gray-medium);
    font-size: 0.75rem;
    margin-bottom: 4px;
}

.footer-phone {
    color: white;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 700;
    transition: var(--transition);
}

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

.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.footer-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.footer-cta-btn .btn-arrow {
    transition: transform 0.3s ease;
}

.footer-cta-btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* Logo tipográfico del footer */
.footer-logo-typography {
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: -0.02em;
    color: var(--primary);
    margin-bottom: 16px;
}

.footer-logo-pro {
    font-weight: 800;
    color: white;
}

/* Social links */
.footer-social {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.social-link {
    color: var(--gray-medium);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition);
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
}

.social-link:hover {
    color: white;
    background: var(--primary);
}

/* Ajustes responsive */
@media (max-width: 768px) {
    .footer-cta-section {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-contact-block {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-cta-btn {
        width: 100%;
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-links-column {
        text-align: center;
    }
    
    .footer-links-column ul li a {
        justify-content: center;
    }
}
/* CTA Persuasivo Section */
.cta-persuasivo-section {
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1548839140-29a749e1cf4d?w=1920&h=600&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 0;
}

.cta-persuasivo-section .cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(19, 45, 107, 0.92) 0%, rgba(0, 0, 0, 0.88) 100%);
}

.cta-persuasivo-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
}

.cta-stock-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.875rem;
    margin-bottom: 24px;
    font-weight: 500;
}

.blink-dot {
    width: 8px;
    height: 8px;
    background: #10B981;
    border-radius: 50%;
    display: inline-block;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.cta-savings-badge {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    display: inline-block;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.cta-persuasivo-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-persuasivo-subtitle {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;
}

.cta-benefits-list {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.cta-benefit {
    font-size: 0.875rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 14px;
    border-radius: 50px;
}

/* Calculadora de ahorro */
.cta-calc {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 60px;
    backdrop-filter: blur(10px);
}

.calc-old {
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: line-through;
    color: #f87171;
}

.calc-arrow {
    font-size: 1.5rem;
}

.calc-new {
    font-size: 1.75rem;
    font-weight: 800;
    color: #4ade80;
}

.calc-save {
    background: #10B981;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Testimonial mini */
.cta-testimonial-mini {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 16px 24px;
    border-radius: 60px;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 32px;
}

.testimonial-avatars span {
    font-size: 1.5rem;
}

.cta-testimonial-mini p {
    margin: 0;
    font-size: 0.875rem;
}

.stars {
    color: #FBBF24;
    font-size: 0.875rem;
}

/* Botones principales */
.btn-cta-persuasivo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-cta-persuasivo:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(245, 158, 11, 0.5);
}

.btn-cta-persuasivo .btn-arrow {
    transition: transform 0.3s ease;
}

.btn-cta-persuasivo:hover .btn-arrow {
    transform: translateX(5px);
}

.btn-cta-persuasivo-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

.cta-persuasivo-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.cta-guarantee {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    font-size: 0.75rem;
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
    .cta-persuasivo-section {
        padding: 60px 0;
        background-attachment: scroll;
    }
    
    .cta-persuasivo-content h2 {
        font-size: 1.75rem;
    }
    
    .cta-benefits-list {
        gap: 12px;
    }
    
    .cta-benefit {
        font-size: 0.75rem;
    }
    
    .btn-cta-persuasivo,
    .btn-cta-persuasivo-secondary {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: 1rem;
    }
    
    .cta-calc {
        flex-direction: column;
        gap: 12px;
        border-radius: 32px;
    }
    
    .cta-testimonial-mini {
        flex-direction: column;
        gap: 8px;
        border-radius: 32px;
    }
}
/* Sección Final - Familia Feliz */
.familia-section {
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1545324418-cc1a3fa10c00?w=1920&h=800&fit=crop');
    background-size: cover;
    background-position: center 40%;
    background-repeat: no-repeat;
    padding: 100px 0 80px;
}

.familia-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(19, 45, 107, 0.88) 0%, rgba(0, 0, 0, 0.75) 100%);
}

.familia-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 900px;
    margin: 0 auto;
}

.familia-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 24px;
}

.familia-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.familia-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;
}

.familia-benefits {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    padding: 20px 0;
}

.familia-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 60px;
    transition: var(--transition);
}

.familia-benefit:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.2);
}

.familia-benefit span:first-child {
    font-size: 2rem;
}

.familia-benefit div {
    text-align: left;
}

.familia-benefit strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 2px;
}

.familia-benefit small {
    font-size: 0.75rem;
    opacity: 0.8;
}

/* Botón principal */
.btn-familia {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    padding: 18px 48px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    margin-bottom: 16px;
}

.btn-familia:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(245, 158, 11, 0.6);
}

.btn-familia .btn-arrow {
    transition: transform 0.3s ease;
    font-size: 1.25rem;
}

.btn-familia:hover .btn-arrow {
    transform: translateX(6px);
}

.familia-note {
    font-size: 0.875rem;
    opacity: 0.8;
    margin-top: 16px;
}

/* Trust items */
.familia-trust {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-item {
    text-align: center;
}

.trust-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #f59e0b;
    margin-bottom: 4px;
}

.trust-label {
    font-size: 0.75rem;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    .familia-section {
        padding: 60px 0 50px;
        background-position: center 30%;
    }
    
    .familia-content h2 {
        font-size: 1.75rem;
    }
    
    .familia-content p {
        font-size: 1rem;
    }
    
    .familia-benefits {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .familia-benefit {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .btn-familia {
        padding: 14px 32px;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }
    
    .familia-trust {
        gap: 24px;
    }
    
    .trust-number {
        font-size: 1.5rem;
    }
}