/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #ff6800;      /* Color naranja de Segurma */
    --primary-dark: #E25400; /* Naranja oscuro */
    --orange: #ff6800;
    --dark: #333333;
    --green: #25D366;
    --green-dark: #128C7E;
    --blue: #3B82F6;
    --blue-light: #EFF6FF;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --white: #FFFFFF;
    --success: #28a745;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease, background-color 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

/* Utility Classes */
.primary-button {
    display: inline-block;
    background-color: var(--white);
    color: var(--primary);
    padding: 0.6rem 1.2rem;
    border-radius: 0.4rem;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.primary-button:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--green);
    color: var(--white);
    padding: 0.6rem 1.2rem;
    border-radius: 0.4rem;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.whatsapp-button:hover {
    background-color: var(--green-dark);
}

.whatsapp-icon {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.5rem;
    fill: currentColor;
}

.sms-button {
    display: inline-block;
    background-color: var(--white);
    color: var(--orange);
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.sms-button:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

.highlight {
    color: var(--orange);
}

/* Header Styles */
.header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 100;
    background-color: white;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.18);
    padding: 0.75rem 0;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.logo-img {
    height: 3.5rem;
    object-fit: contain;
    width: auto;
    top: 9px;
    position: relative;
}

.logo-tagline {
    font-size: 0.8rem;
    font-weight: 400;
    color: #555;
    display: block;
}

.nav-buttons-mobile {
    display: none;
}

.nav-buttons-mobile .nav-whatsapp-button {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    background-color: var(--green);
    color: white;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    gap: 8px;
    white-space: nowrap;
}

.nav-buttons-mobile .whatsapp-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.nav-buttons-mobile .nav-phone-button {
    padding: 8px 16px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    cursor: pointer;
}

@media (max-width: 767px) {
    .header {
        padding: 12px 0;
    }

    .header-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 16px;
    }

    .logo-img {
        height: 35px;
        width: auto;
        position: relative;
        top: 0;
    }

    .logo-tagline {
        display: none;
    }

    .nav-buttons-mobile {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .distribuidor-badge {
        display: none;
    }

    .main-nav {
        display: none;
    }
}

.distribuidor-badge {
    display: flex;
    align-items: center;
}

.distribuidor-badge img {
    height: 3rem; /* Logo distribuidor más grande */
}

.main-nav {
    display: flex;
    align-items: center;
    background-color: white; /* Cambio a fondo blanco */
    border-radius: 4px;
    padding: 0.5rem 1rem;
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-whatsapp-button {
    display: flex;
    align-items: center;
    padding: 0.75rem 1.5rem; /* Botones más grandes */
    background-color: var(--green);
    color: white;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem; /* Cambiado de 1.1rem a 0.8rem */
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.nav-whatsapp-button:hover {
    background-color: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.whatsapp-icon {
    width: 1.5rem; /* Icono de WhatsApp más grande */
    height: 1.5rem;
}

.nav-phone-button {
    display: flex;
    align-items: center;
    padding: 0.75rem 1.5rem; /* Botones más grandes */
    background-color: white;
    color: var(--primary);
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem; /* Cambiado de 1.1rem a 0.8rem */
    transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-phone-button:hover {
    background-color: #f8f8f8;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 100;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: white;
    transition: all 0.3s ease;
}

/* Media queries for responsive design */
@media (max-width: 991px) {
    .header-container {
        padding: 0 0.5rem;
    }
    
    .distribuidor-badge {
        display: none;
    }
    
    .logo-tagline {
        display: none;
    }
}

@media (max-width: 767px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .logo-img {
        height: 3rem; /* Aumentamos el tamaño del logo en móvil */
        object-fit: contain;
        width: auto;
        max-width: 100%;
    }
    
    .nav-container {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: var(--primary);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.3s ease;
        z-index: 99;
        padding: 2rem 1rem;
    }
    
    .main-nav.active .nav-container {
        right: 0;
    }
    
    .nav-whatsapp-button,
    .nav-phone-button {
        width: 80%;
        justify-content: center;
        padding: 0.75rem 1rem;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(10px) rotate(45deg);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
    }
}

.whatsapp-banner,
.whatsapp-banner .container,
.banner-text,
.whatsapp-link,
.whatsapp-link:hover,
.whatsapp-link .whatsapp-icon {
    display: none;
}

.header-main {
    background-color: var(--primary);
    color: var(--white);
    padding: 0.6rem 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.logo {
    flex-shrink: 0;
}

.logo-desktop {
    height: auto;
    width: 160px;
    display: block;
}

.logo-mobile {
    height: auto;
    width: 120px;
    display: none;
}

.main-nav {
    display: none;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
}

.nav-link {
    color: #333; /* Color oscuro para enlaces */
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    font-size: 0.9rem;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: var(--primary-color); /* Color primario al hacer hover */
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.distribuidor-logo {
    height: auto;
    width: 195px;
    margin-right: 1rem;
    object-fit: contain;
    filter: none;
    transform: none;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom right, var(--blue-light), var(--gray-100));
    padding: 4rem 0;
}

.hero-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-background::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/portada.jpg');
    background-size: cover;
    background-position: center;
    z-index: 1;
    opacity: 0.85;
}

.hero-background::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0.3));
    z-index: 2;
}

.hero-title-container {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 10;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    text-transform: uppercase;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    display: inline-block;
    margin: 0 auto;
    padding: 0.5rem 2rem;
    border-radius: 0.5rem;
    background-color: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding-top: 1rem;
    padding-bottom: 3rem;
}

.hero-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 0;
    position: relative;
    z-index: 10;
    color: var(--white);
    max-width: 500px;
}

.hero-tag {
    display: none;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

/* Todo Incluido Section Styles */
.todo-incluido-section {
    padding: 4rem 0;
    background-color: var(--white);
    border-bottom: 1px solid var(--gray-200);
}

.todo-incluido-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.todo-incluido-title:after {
    content: '';
    position: absolute;
    bottom: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary);
}

.todo-incluido-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.todo-incluido-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.todo-incluido-icon {
    margin-bottom: 1rem;
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    -webkit-transform: translateZ(0); /* Fix para Safari/iOS */
}

.todo-incluido-icon img {
    max-width: 100%;
    height: auto;
    max-height: 60px;
    object-fit: contain; /* Asegura que la imagen se muestre completa */
    -webkit-backface-visibility: hidden; /* Fix para Safari/iOS */
}

.todo-incluido-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.todo-incluido-item-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.todo-incluido-item-extra {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 700;
}

.todo-incluido-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.todo-incluido-btn {
    display: inline-block;
    padding: 0.85rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-price {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 6px rgba(255, 94, 0, 0.2);
}

.btn-price:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(255, 94, 0, 0.25);
}

.btn-info {
    background-color: var(--gray-800);
    color: var(--white);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
}

.btn-info:hover {
    background-color: var(--gray-700);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
    .todo-incluido-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .todo-incluido-item-title {
        font-size: 1.1rem;
    }
    
    .todo-incluido-buttons {
        gap: 2rem;
    }
    
    .todo-incluido-btn {
        min-width: 200px;
    }
    
    .todo-incluido-icon {
        width: 80px;
        height: 80px;
    }
    
    .distribuidor-logo {
        height: 4.5rem;
    }
}

@media (min-width: 1024px) {
    .todo-incluido-grid {
        grid-template-columns: repeat(6, 1fr);
    }
    
    .todo-incluido-title {
        font-size: 2.5rem;
    }
}

/* Promo Banner Styles */
.promo-banner {
    background-color: var(--orange);
    color: var(--white);
    border-radius: 0.75rem;
    padding: 1.75rem 1.5rem;
    margin-bottom: 2rem;
    margin-left: auto;
    max-width: 420px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.2);
    text-align: center;
    position: relative;
    z-index: 5;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.promo-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.75rem;
    line-height: 1.1;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.promo-label {
    background-color: var(--white);
    color: var(--orange);
    font-weight: 700;
    padding: 0.75rem 1.25rem;
    border-radius: 2rem;
    font-size: 1rem;
    text-align: center;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.price-label {
    font-size: 1.5rem;
    font-weight: 600;
}

.price-amount {
    font-size: 5.5rem;
    font-weight: 800;
    line-height: 1;
    margin: 0.5rem 0;
    text-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
}

.price-decimal {
    font-size: 2.7rem;
    vertical-align: super;
}

.price-period {
    font-size: 1.3rem;
    font-weight: normal;
}

.price-condition {
    font-size: 1rem;
    font-weight: 500;
}

.promo-note {
    text-align: center;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.promo-extras {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    font-weight: 700;
    margin-top: 0.5rem;
}

.promo-equipment {
    margin-top: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    background-color: rgba(255, 255, 255, 0.15);
    padding: 0.6rem 1rem;
    border-radius: 6px;
    text-align: center;
}

.promo-price-special {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin: 1rem 0;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    background: rgba(255, 94, 0, 0.3);
    padding: 10px 16px;
    border-radius: 6px;
    text-align: center;
}

.highlight-period {
    color: #ffffff;
    background-color: var(--primary);
    padding: 4px 8px;
    border-radius: 4px;
    margin: 0 4px;
    display: inline-block;
    transform: scale(1.1);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.4);
    }
    70% {
        transform: scale(1.02);
        box-shadow: 0 0 0 10px rgba(255, 215, 0, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
    }
}

.promo-savings {
    font-size: 1.1rem;
    font-weight: 700;
    color: #FFD700;
    margin-top: 0.75rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    background: rgba(255, 215, 0, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-block;
    border: 2px solid #FFD700;
}

.equipment-price {
    font-weight: 800;
    font-size: 1.2rem;
    text-decoration: line-through;
    color: #ffcc00;
    margin: 0 0.2rem;
}

.zero-cost {
    font-weight: 800;
    font-size: 1.25rem;
    color: #ffffff;
    background-color: #00cc66;
    padding: 0.1rem 0.4rem;
    border-radius: 4px;
    margin: 0 0.2rem;
}

.promo-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.price-content {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0.5rem;
}

.price-wrapper {
    display: flex;
    align-items: start;
    justify-content: center;
}

/* Contact Panel Styles */
.contact-panel {
    background-color: var(--white);
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 400px;
    border: 1px solid rgba(255, 94, 0, 0.1);
}

.contact-panel-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    text-align: center;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

/* Asesor Styles */
.contact-asesor {
    display: flex;
    align-items: center;
    background-color: rgba(255, 94, 0, 0.05);
    border-radius: 0.75rem;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 94, 0, 0.1);
}

.asesor-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1rem;
    border: 2px solid var(--primary);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.asesora-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.asesor-info {
    flex: 1;
}

.asesor-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.asesor-position {
    font-size: 0.85rem;
    color: var(--gray-600);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.asesor-text {
    font-size: 0.9rem;
    color: var(--gray-700);
    line-height: 1.4;
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-whatsapp-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--green);
    color: var(--white);
    font-weight: 600;
    padding: 0.85rem 1rem;
    border-radius: 0.5rem;
    width: 100%;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-whatsapp-button:hover {
    background-color: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.contact-option-icon {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.5rem;
    fill: currentColor;
}

.contact-sms-option {
    display: flex;
    flex-direction: column;
}

.contact-sms-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    color: var(--primary);
    padding: 0.85rem 1rem;
    border-radius: 0.5rem;
    font-weight: 700;
    border: 1px solid var(--primary);
    transition: background-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
    cursor: pointer;
}

.contact-sms-button:hover {
    background-color: rgba(255, 94, 0, 0.05);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.contact-sms-form {
    display: none;
    margin-top: 1rem;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-sms-option.active .contact-sms-form {
    display: flex;
}

.contact-input {
    padding: 0.85rem;
    border: 1px solid var(--gray-300);
    border-radius: 0.5rem;
    font-size: 0.938rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 94, 0, 0.1);
    outline: none;
}

.contact-submit {
    background-color: var(--primary);
    color: var(--white);
    padding: 0.85rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(255, 94, 0, 0.2);
}

.contact-submit:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.contact-privacy {
    font-size: 0.75rem;
    color: var(--gray-600);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.contact-privacy input {
    margin-top: 0.125rem;
}

.contact-info {
    border-top: 1px solid rgba(255, 94, 0, 0.1);
    padding-top: 1rem;
    text-align: center;
}

.contact-disclaimer {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.contact-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.2rem;
}

.star {
    color: #FFB800;
    font-size: 1rem;
}

.rating-text {
    font-size: 0.85rem;
    color: var(--gray-600);
    margin-left: 0.5rem;
}

.property-type-selector,
.property-type-selector p,
.property-options,
.property-option,
.property-option input,
.property-option input:checked + .property-icon + span,
.property-option input:checked + .property-icon,
.property-option input:checked ~ .property-option,
.property-icon,
.continue-button,
.continue-button:hover {
    display: none;
}

/* Products/Services Section Styles */
.products-section {
    padding: 5rem 0;
    background-color: var(--gray-50);
}

/* Kits Section Styles */
.kits-intro {
    text-align: center;
    margin: 0 auto 2rem;
    max-width: 600px;
}

.kits-intro p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-align: center;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.section-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.section-description {
    font-size: 1.1rem;
    color: var(--primary);
    font-weight: 600;
}

.kits-benefits {
    display: flex;
    flex-wrap: nowrap;
    gap: 1rem;
    margin: 1rem 0;
    overflow-x: auto;
}

.kit-benefit {
    flex: 0 0 auto;
    background-color: var(--white);
    padding: 0.75rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--gray-200);
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    width: auto;
    max-width: 280px;
}

.kit-benefit:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 94, 0, 0.1);
}

.benefit-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.kit-benefit:hover .benefit-icon {
    transform: scale(1.1);
}

.benefit-icon svg {
    width: 18px;
    height: 18px;
    color: var(--white);
}

.benefit-content {
    flex: 1;
}

.benefit-content h3 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.benefit-content p {
    font-size: 0.7rem;
    color: var(--gray-600);
}

.kits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.kit-card {
    background-color: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.kit-card.recommended {
    border: 2px solid var(--primary);
    box-shadow: 0 15px 35px rgba(255, 94, 0, 0.15);
}

.recommended-tag {
    position: absolute;
    top: 1rem;
    right: -2rem;
    background: var(--primary);
    color: white;
    padding: 0.5rem 2rem;
    transform: rotate(45deg);
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    z-index: 1;
}

.kit-price {
    text-align: center;
    margin: 1rem 0;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
}

.kit-price .price-period {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-600);
}

.kit-price-after {
    text-align: center;
    margin: 0.5rem 0 1rem 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-500);
    line-height: 1.3;
}

.promo-price-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.kit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 94, 0, 0.1);
}

.kit-image {
    position: relative;
    overflow: hidden;
    padding-top: 120%;
    background-color: var(--gray-50);
    border-bottom: 1px solid var(--gray-100);
    transition: all 0.4s ease;
}

.kit-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 5px;
    transition: transform 0.5s ease;
    transform: scale(1.1);
}

.kit-card:hover .kit-image {
    background-color: var(--gray-100);
    padding-top: 130%;
}

.kit-card:hover .kit-image img {
    transform: scale(1.25);
    padding: 2px;
}

.kit-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.kit-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    text-align: center;
}

.kit-components {
    list-style: none;
    margin: 0;
    padding: 0;
    flex-grow: 1;
}

.kit-components li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--gray-700);
}

.kit-components li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    background-color: var(--primary);
    border-radius: 50%;
}

.kit-button {
    display: inline-block;
    text-decoration: none;
    background-color: var(--primary);
    color: var(--white);
    font-weight: 600;
    padding: 0.8rem 1.5rem;
    border-radius: 0.5rem;
    text-align: center;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.kit-button:hover {
    background-color: var(--primary-dark);
}

.kits-plus-banner {
    margin: 3rem auto 2rem;
    max-width: 800px;
    padding: 0 1rem;
}

.plus-banner-content {
    background: linear-gradient(135deg, var(--primary) 0%, #ff8533 100%);
    border-radius: 1rem;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(255, 104, 0, 0.2);
}

.plus-banner-content::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
}

.plus-icon {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 1rem 1.5rem;
    flex-shrink: 0;
}

.plus-icon span {
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.plus-text {
    flex: 1;
}

.plus-text h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
}

.plus-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin: 0;
}

.plus-button {
    background-color: white;
    color: var(--primary);
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.plus-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.plus-arrow {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.3s ease;
}

.plus-button:hover .plus-arrow {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .plus-banner-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .plus-text h3 {
        font-size: 1.25rem;
    }

    .plus-text p {
        font-size: 1rem;
    }

    .plus-button {
        width: 100%;
        justify-content: center;
    }
}

.kits-note {
    text-align: center;
    margin-top: 2rem;
}

.contact-cta {
    display: inline-block;
    text-decoration: none;
    color: var(--primary);
    font-weight: 600;
    padding: 0.5rem 1rem;
    border: 2px solid var(--primary);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.contact-cta:hover {
    background-color: var(--primary);
    color: var(--white);
}

@media (min-width: 768px) {
    .kits-benefits {
        flex-wrap: nowrap;
        gap: 1rem;
        justify-content: center;
    }
    
    .kit-benefit {
        flex: 0 0 auto;
        max-width: 200px;
    }
}

@media (min-width: 1024px) {
    .kits-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
        gap: 3rem;
    }
    
    .kit-image {
        padding-top: 85%;
    }
    
    .kit-image img {
        padding: 10px;
        transform: scale(1.15);
    }
    
    .kit-card:hover .kit-image {
        padding-top: 95%;
    }
}

/* Housing Types / Products Section Styles */
.housing-types-section {
    padding: 4rem 0;
    background-color: #f5f7fa;
}

.housing-types-section .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2.5rem;
}

.housing-types-section .section-title {
    font-size: 2rem;
    color: #2d3748;
    font-weight: 700;
    margin-bottom: 1rem;
}

.housing-types-section .section-description {
    font-size: 1.1rem;
    color: var(--primary);
    line-height: 1.5;
    font-weight: 500;
}

.housing-types-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 1rem;
}

.housing-type-card {
    background-color: var(--gray-50);
    text-align: center;
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid var(--gray-200);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    overflow: hidden;
}

.housing-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.housing-type-icon {
    width: 100%;
    height: 160px;
    overflow: hidden;
    margin-bottom: 1.25rem;
    border-radius: 4px;
}

.housing-type-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.housing-type-card:hover .housing-type-icon img {
    transform: scale(1.05);
}

.housing-type-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.75rem;
}

.housing-type-description {
    font-size: 0.95rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
    padding: 0;
    line-height: 1.5;
}

.text-button {
    display: inline-flex;
    align-items: center;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.text-button:hover {
    color: var(--primary-dark);
}

.arrow {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.text-button:hover .arrow {
    transform: translateX(3px);
}

@media (max-width: 1024px) {
    .housing-types-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .housing-types-section {
        padding: 3rem 0;
    }
    
    .housing-types-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .housing-type-title {
        font-size: 1.2rem;
    }
    
    .housing-type-description {
        font-size: 0.9rem;
    }
    
    .housing-types-section .section-title {
        font-size: 1.8rem;
    }
    
    .housing-types-section .section-description {
        font-size: 1rem;
    }
}

/* Testimonials Section */
.testimonials-section {
    display: none; /* Ocultar la sección de testimonios */
    background-color: #f5f7fa;
    padding: 80px 0;
    overflow: hidden;
}

.testimonials-slider {
    display: flex;
    transition: transform 0.4s ease;
    margin: 40px 0;
    overflow: hidden;
}

.testimonial-card {
    flex: 0 0 100%;
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin: 0 15px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-rating {
    color: #ff6b35;
    font-size: 18px;
    margin-bottom: 15px;
}

.testimonial-text {
    color: #4a4a4a;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-name {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 5px;
    color: #32373b;
}

.author-position {
    font-size: 14px;
    color: #777;
    margin: 0;
}

.testimonials-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.control-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background-color: #fff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #32373b;
}

.control-button:hover {
    background-color: #ff6b35;
    color: #fff;
    transform: translateY(-2px);
}

.control-button svg {
    width: 20px;
    height: 20px;
}

.testimonials-dots {
    display: flex;
    margin: 0 20px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ddd;
    margin: 0 5px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: #ff6b35;
    transform: scale(1.2);
}

@media (min-width: 768px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 30px);
    }
}

@media (min-width: 1200px) {
    .testimonial-card {
        flex: 0 0 calc(33.33% - 30px);
    }
}

/* Business Section */
.business-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.business-content {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.business-text {
    flex: 1;
    width: 50%;
}

.business-image {
    flex: 1;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    width: 50%;
    height: 450px;
}

.business-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.business-features-compact {
    margin: 25px 0;
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
}

.feature-item:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.feature-item svg {
    width: 20px;
    height: 20px;
    color: #ff6b00;
    margin-right: 12px;
    flex-shrink: 0;
}

.feature-item span {
    font-size: 15px;
    color: #333;
    line-height: 1.4;
}

.business-image .business-promo-box {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 20px;
    text-align: center;
}

.business-image .price-text {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    background-color: #ff6b00;
    padding: 6px 15px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 10px;
}

.business-image .oferta-tag {
    display: inline-block;
    background: #ff6b00;
    color: white;
    font-size: 16px;
    font-weight: 700;
    padding: 6px 15px;
    border-radius: 4px;
    margin-bottom: 12px;
}

.business-image .promo-subtitle {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    margin: 0 0 15px 0;
    letter-spacing: 0.5px;
}

.business-image .price-amount {
    font-size: 72px;
    font-weight: 900;
    color: #fff;
    display: block;
    text-align: center;
    margin: 15px 0;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.8);
    letter-spacing: -1px;
}

.business-image .price-decimal {
    font-size: 42px;
    font-weight: 800;
    vertical-align: super;
}

.business-image .price-period,
.business-image .price-conditions,
.business-image .price-free {
    text-align: center;
    margin: 8px 0;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    font-weight: 600;
}

.business-image .price-period {
    font-size: 18px;
    font-weight: 600;
}

.business-image .price-conditions {
    font-size: 16px;
    font-weight: 500;
}

.business-image .price-free {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    background-color: rgba(255, 107, 0, 0.8);
    padding: 8px 15px;
    border-radius: 5px;
    display: inline-block;
    margin-top: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.business-image .promo-cta {
    display: block;
    background-color: #fff;
    color: #ff6b00;
    text-align: center;
    padding: 18px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 800;
    font-size: 18px;
    margin-top: 25px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.4);
    transition: all 0.3s;
    letter-spacing: 0.3px;
}

.business-image .promo-cta:hover {
    background-color: #f8f8f8;
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.5);
}

.business-cta {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.business-stats {
    display: none;
}

.stat-item {
    display: none;
}

.stat-number {
    display: none;
}

.stat-text {
    display: none;
}

@media (max-width: 991px) {
    .business-content {
        flex-direction: column;
    }
    
    .business-image {
        order: -1;
        margin-bottom: 30px;
        width: 100%;
        height: auto;
    }
    
    .business-text {
        width: 100%;
    }
    
    .promo-price {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .price-info {
        margin-top: 15px;
    }
    
    .business-image .business-promo-box {
        position: relative;
        margin: 0 0 20px 0;
        border-radius: 10px;
    }
    
    .business-stats {
        position: relative;
        background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8));
        border-radius: 10px;
        margin-top: 15px;
    }
}

@media (max-width: 767px) {
    .business-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .stat-item {
        margin-bottom: 10px;
    }
    
    .business-cta {
        flex-direction: column;
    }
}

/* Trust Section Styles */
.trust-section {
    padding: 5rem 0;
    background-color: var(--gray-50);
    border-top: 1px solid var(--gray-200);
}

.trust-badges {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 3rem 0;
}

.badge-item {
    display: flex;
    align-items: center;
    background-color: var(--white);
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.badge-item:hover {
    transform: translateY(-0.25rem);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.badge-icon {
    flex-shrink: 0;
    width: 4rem;
    height: 4rem;
    margin-right: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.badge-text h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.badge-text p {
    font-size: 0.938rem;
    color: var(--gray-600);
}

.trust-partners {
    margin-top: 4rem;
    text-align: center;
}

.partner-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 2rem;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 5rem;
    background-color: var(--white);
    border-radius: 0.5rem;
    padding: 1rem;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

.partner-logo img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

/* Media Queries for Trust Section */
@media (min-width: 768px) {
    .trust-badges {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .partners-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

/* Contact and Form Styles */
.contact-section {
    padding: 5rem 0;
    background-color: var(--white);
    border-top: 1px solid var(--gray-200);
}

.sms-form-container {
    background-color: var(--white);
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.form-group input, 
.form-group select {
    border-radius: 0.375rem;
}

.submit-button {
    border-radius: 0.5rem;
    font-size: 1rem;
}

/* Footer Styles */
.footer {
    background-color: var(--gray-800);
    color: var(--white);
    padding: 2rem 0 1rem; /* Reducido de 4rem a 2rem arriba y 1rem abajo */
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 1rem; /* Reducido de 2rem a 1rem */
}

.footer-logo {
    text-align: center;
    margin-bottom: 0.5rem; /* Reducido de 1.5rem a 0.5rem */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo img {
    max-width: 140px;
    margin-bottom: 0.5rem; /* Reducido de 1rem a 0.5rem */
}

.footer-tagline {
    font-size: 0.875rem;
    color: var(--gray-300);
    margin-bottom: 0.5rem; /* Reducido */
}

/* Footer Partners Styles */
.footer-partners {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px; /* Reducido de 20px a 10px */
}

.track4x-logo {
    height: 30px; /* Reducido de 40px a 30px */
    margin: 0 10px;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .footer-logo {
        flex-direction: row;
        text-align: left;
        margin-bottom: 0;
        align-items: center;
        gap: 1rem;
    }
    
    .footer-logo img {
        margin-bottom: 0;
    }
    
    .footer-tagline {
        margin-bottom: 0;
    }
    
    .footer-partners {
        margin-top: 0;
        margin-left: 1rem;
    }
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 1rem; /* Reducido de 2rem a 1rem */
    border-top: 1px solid var(--gray-700);
    gap: 0.5rem; /* Reducido */
}

.footer-copyright {
    font-size: 0.75rem;
    color: var(--gray-400);
    max-width: 100%;
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem; /* Reducido de 1.5rem */
}

.footer-legal a {
    font-size: 0.875rem;
    color: var(--gray-400);
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--primary);
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    
    .footer-copyright {
        max-width: 60%;
        text-align: left;
    }
    
    .footer-legal {
        justify-content: flex-end;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .footer-partners {
        margin-top: 10px; /* Reducido de 15px a 10px */
    }
    
    .track4x-logo {
        height: 25px; /* Reducido de 30px a 25px */
    }
    
    .footer-logo {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }
}

/* Media Queries for Footer */
@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr 2fr;
        align-items: start;
    }
    
    .footer-logo {
        align-items: flex-start;
    }
    
    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .footer-legal {
        justify-content: flex-end;
    }
}

/* Media Queries */
@media (min-width: 640px) {
    .hero-cta {
        display: flex;
        gap: 1rem;
    }
}

@media (min-width: 768px) {
    .banner-text {
        font-size: 1rem;
    }
    
    .header-content {
        justify-content: space-between;
        padding: 0.8rem 0;
    }
    
    .logo {
        margin-bottom: 0;
    }

    .logo-desktop {
        display: block;
        height: auto;
        width: 150px;
    }

    .logo-mobile {
        display: none;
    }

    .main-nav {
        display: block;
    }

    .nav-list {
        gap: 2rem;
    }

    .nav-link {
        font-size: 1rem;
    }

    .distribuidor-logo {
        height: 4.5rem;
    }

    .header-cta {
        margin-top: 0;
    }

    .hero-text {
        max-width: 600px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-cta {
        margin-top: 2rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .header-content {
        padding: 0.2rem 0;
    }

    .hero-content {
        padding: 5rem 0;
        flex-direction: row;
        align-items: center;
    }
    
    .hero-text {
        flex: 1;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-cta {
        flex-direction: row;
    }
    
    .hero-image {
        flex: 1;
        justify-content: flex-end;
    }

    .contact-panel {
        max-width: 450px;
        margin: 0 auto;
    }
}

@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: 1.1fr 0.9fr;
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .header-main {
        padding: 0.3rem 0;
    }

    .logo-desktop {
        height: auto;
        width: 160px;
    }

    .hero-content {
        align-items: center;
        justify-content: center;
    }
}

/* Mobile Menu Styles */
@media (max-width: 991px) {
    .header-main {
        padding: 10px 0;
    }
    
    .logo-desktop {
        max-width: 150px;
    }
    
    .header-actions {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        margin-top: 15px;
    }
    
    .main-nav {
        display: none;
    }
    
    .main-nav.active {
        display: block;
    }
}

@media (max-width: 767px) {
    /* Estilos del encabezado principal */
    .header-main {
        padding: 10px 0;
    }
    
    .header-content {
        flex-wrap: wrap;
        justify-content: center;
        padding: 10px 15px;
    }
    
    /* Logo */
    .logo {
        width: 100%;
        text-align: center;
        margin-bottom: 15px;
        display: flex;
        justify-content: center;
    }
    
    .logo-desktop {
        max-width: 150px;
        object-fit: contain;
        width: auto;
    }
    
    /* Distribuidor logo */
    .distribuidor-logo {
        margin-bottom: 10px;
        max-width: 180px;
    }
    
    /* Contenedor de botones */
    .header-actions {
        display: none;
    }
    
    /* Botones de acción */
    .header-cta {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
        margin: 0;
    }
    
    /* Botón WhatsApp */
    .whatsapp-button {
        width: 100%;
        height: auto;
        padding: 10px 15px;
        font-size: 14px;
        border-radius: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .whatsapp-icon {
        width: 18px;
        height: 18px;
        margin-right: 8px;
    }
    
    /* Botón SMS/Teléfono */
    .primary-button.sms-button {
        width: 100%;
        height: auto;
        padding: 10px 15px;
        font-size: 14px;
        border-radius: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .hero-background::before,
    .hero-background::after {
        width: 100%;
    }
    
    .hero-text {
        padding-left: 0;
    }
    
    .hero-content {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: 1.1fr 0.9fr;
    }
}

/* Media queries para el panel de contacto */
@media (max-width: 420px) {
    .contact-panel {
        max-width: 100%;
    }
    
    .contact-asesor {
        flex-direction: column;
        text-align: center;
    }
    
    .asesor-image {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

@media (min-width: 768px) {
    .contact-panel {
        max-width: 450px;
    }
    
    .asesor-image {
        width: 160px;
        height: 160px;
    }
}

@media (max-width: 767px) {
    .promo-title {
        font-size: 2.2rem;
    }
    
    .promo-banner {
        padding: 1.5rem;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .promo-equipment {
        font-size: 0.95rem;
        padding: 0.5rem 0.8rem;
        margin-top: 0.8rem;
    }
    
    .equipment-price {
        font-size: 1.05rem;
    }
    
    .zero-cost {
        font-size: 1.1rem;
        padding: 0.1rem 0.3rem;
    }
    
    /* Ocultar el panel de contacto en móvil, mostrar solo la promo */
    .hero-image {
        display: none;
    }
    
    /* Botones en el banner promocional para móvil */
    .promo-mobile-buttons {
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
        margin-top: 1.5rem;
    }
    
    .promo-mobile-buttons .contact-whatsapp-button,
    .promo-mobile-buttons .primary-button.sms-button {
        width: 100%;
        margin: 0;
        font-size: 0.9rem;
        padding: 0.8rem 1rem;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        border-radius: 0.5rem;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
        transition: all 0.3s ease;
    }
    
    .promo-mobile-buttons .contact-whatsapp-button {
        background-color: var(--green);
        color: var(--white);
    }
    
    .promo-mobile-buttons .contact-whatsapp-button:hover {
        background-color: var(--green-dark);
        transform: translateY(-2px);
    }
    
    .promo-mobile-buttons .primary-button.sms-button {
        background-color: var(--primary);
        color: var(--white);
    }
    
    .promo-mobile-buttons .primary-button.sms-button:hover {
        background-color: var(--primary-dark);
        transform: translateY(-2px);
    }
    
    .promo-mobile-buttons .contact-option-icon {
        width: 1.25rem;
        height: 1.25rem;
        margin-right: 0.5rem;
        fill: currentColor;
    }
}

/* Aseguramos que los botones no aparezcan en la promo en pantallas más grandes */
@media (min-width: 768px) {
    .promo-mobile-buttons {
        display: none;
    }
}

/* Elementos de Alarma Section Styles */
.elementos-alarma-section {
    padding: 4rem 0 5rem;
    background-color: var(--white);
    border-bottom: 1px solid var(--gray-200);
}

.elementos-alarma-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark);
    text-align: center;
    margin-bottom: 1.5rem;
}

.elementos-alarma-promo {
    background-color: var(--primary);
    color: var(--white);
    text-align: center;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    max-width: 600px;
    margin: 0 auto 3rem;
    box-shadow: 0 4px 8px rgba(255, 94, 0, 0.15);
}

.elementos-alarma-carousel {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.carousel-control {
    display: flex;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    justify-content: center;
    align-items: center;
    position: absolute;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.prev-elemento {
    left: 0.5rem;
}

.next-elemento {
    right: 0.5rem;
}

.carousel-control svg {
    width: 20px;
    height: 20px;
    color: var(--gray-700);
}

.carousel-control:hover {
    background-color: var(--gray-100);
}

.elementos-alarma-nav {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 0.5rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--gray-200);
    padding-bottom: 1rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    padding: 0.5rem 0;
}

.elementos-alarma-nav::-webkit-scrollbar {
    height: 0.25rem;
}

.elementos-alarma-nav::-webkit-scrollbar-track {
    background: var(--gray-100);
}

.elementos-alarma-nav::-webkit-scrollbar-thumb {
    background-color: var(--gray-300);
    border-radius: 0.5rem;
}

.elemento-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.75rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    flex: 0 0 110px;
    min-width: 110px;
    opacity: 0.7;
}

.elemento-tab:hover {
    background-color: var(--gray-100);
    opacity: 1;
}

.elemento-tab.active {
    background-color: var(--gray-100);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border-bottom: 2px solid var(--primary);
    opacity: 1;
}

.elemento-tab-img {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    border-radius: 50%;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--gray-200);
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.elemento-tab-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.elemento-tab:hover .elemento-tab-img {
    border-color: var(--primary);
    transform: translateY(-3px);
}

.elemento-tab.active .elemento-tab-img {
    border-color: var(--primary);
    transform: translateY(-3px);
}

.elemento-tab-text {
    font-size: 0.8rem;
    text-align: center;
    font-weight: 500;
    color: var(--gray-700);
    transition: all 0.3s ease;
}

.elemento-tab.active .elemento-tab-text {
    color: var(--primary);
    font-weight: 600;
}

.elemento-content {
    display: none;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: white;
    margin-top: 1.5rem;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateY(10px);
    opacity: 0;
}

.elemento-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.elemento-content-inner {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .elemento-content-inner {
        flex-direction: row;
        align-items: center;
    }
    
    .elemento-image {
        flex: 0 0 40%;
    }
    
    .elemento-info {
        flex: 0 0 60%;
    }
}

.elemento-image {
    width: 100%;
    text-align: center;
    padding: 1.5rem;
    background-color: var(--gray-50);
    transition: all 0.3s ease;
}

.elemento-image img {
    max-width: 200px;
    height: auto;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.elemento-content:hover .elemento-image {
    background-color: var(--gray-100);
}

.elemento-content:hover .elemento-image img {
    transform: scale(1.15);
}

.elemento-info {
    padding: 1.5rem;
}

.elemento-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.elemento-description {
    font-size: 1.1rem;
    color: var(--gray-700);
    margin-bottom: 1.25rem;
    font-weight: 500;
}

.elemento-features {
    list-style: none;
}

.elemento-features li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: var(--gray-600);
}

.elemento-features li::before {
    content: "•";
    position: absolute;
    left: 0.5rem;
    color: var(--primary);
    font-size: 1.2rem;
}

.elementos-alarma-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.elementos-btn {
    display: inline-block;
    padding: 0.85rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-align: center;
}

.elementos-btn.btn-price {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 6px rgba(255, 94, 0, 0.2);
}

.elementos-btn.btn-price:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(255, 94, 0, 0.25);
}

.elementos-btn.btn-info {
    background-color: var(--gray-800);
    color: var(--white);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
}

.elementos-btn.btn-info:hover {
    background-color: var(--gray-700);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
    .carousel-control {
        display: flex;
    }
    
    .elementos-alarma-nav {
        margin: 0 3rem;
        justify-content: center;
        overflow-x: hidden;
    }
    
    .elemento-content-inner {
        flex-direction: row;
        align-items: stretch;
    }
    
    .elemento-image {
        width: 40%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .elemento-info {
        width: 60%;
    }
    
    .elemento-tab-img {
        width: 70px;
        height: 70px;
    }
    
    .elementos-btn {
        min-width: 200px;
    }
    
    .elementos-alarma-promo {
        font-size: 1.2rem;
        padding: 1rem 2rem;
    }
}

@media (min-width: 1024px) {
    .elementos-alarma-title {
        font-size: 2.5rem;
    }
    
    .elemento-image img {
        max-width: 300px;
    }
    
    .elemento-tab {
        margin: 0 0.5rem;
    }
}

.business-image .promo-cta {
    display: block;
    background-color: #ff6b00;
    color: white;
    text-align: center;
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 15px;
    transition: background-color 0.3s;
}

.business-image .promo-cta:hover {
    background-color: #e85f00;
}

.business-image .price-period,
.business-image .price-conditions,
.business-image .price-free {
    text-align: center;
    margin: 8px 0;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    font-weight: 600;
}

.business-image .price-period {
    font-size: 18px;
    font-weight: 600;
}

.business-image .price-conditions {
    font-size: 16px;
    font-weight: 500;
}

.business-image .price-free {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    background-color: rgba(255, 107, 0, 0.8);
    padding: 8px 15px;
    border-radius: 5px;
    display: inline-block;
    margin-top: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

/* Privacy Popup Styles */
.privacy-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.privacy-popup.active {
    display: flex;
}

.privacy-popup-content {
    background-color: var(--white);
    border-radius: 8px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Para asegurar que el botón Continuar sea visible */
#privacy-continue {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.popup-header {
    padding: 15px 20px;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 8px 8px 0 0;
}

.popup-header h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
}

.close-popup {
    font-size: 1.5rem;
    font-weight: 700;
    cursor: pointer;
    color: var(--white);
    opacity: 0.8;
    transition: opacity 0.3s;
}

.close-popup:hover {
    opacity: 1;
}

.popup-body {
    padding: 20px;
    overflow-y: auto;
    max-height: 60vh;
}

.popup-body p {
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--gray-700);
}

.action-message {
    background-color: rgba(255, 94, 0, 0.1);
    border-left: 3px solid var(--primary);
    padding: 12px 15px;
    margin: 20px 0;
    border-radius: 0 4px 4px 0;
}

.action-message p {
    margin: 0;
    font-weight: 500;
    color: var(--primary-dark);
}

.privacy-checkbox {
    margin: 15px 0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.privacy-checkbox input[type="checkbox"] {
    margin-top: 3px;
}

.privacy-checkbox label {
    font-size: 14px;
    line-height: 1.4;
    color: var(--gray-700);
}

.privacy-checkbox a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.privacy-checkbox a:hover {
    text-decoration: underline;
}

.phone-send-button:disabled {
    background-color: var(--gray-400);
    cursor: not-allowed;
    transform: none;
}

.popup-footer {
    padding: 15px 20px;
    border-top: 1px solid var(--gray-200);
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    position: relative;
    z-index: 1100;
}

.continue-button {
    background-color: var(--primary);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.continue-button:disabled {
    background-color: var(--gray-400);
    cursor: not-allowed;
}

.continue-button:not(:disabled):hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.cancel-button {
    background-color: var(--white);
    color: var(--gray-700);
    border: 1px solid var(--gray-300);
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.cancel-button:hover {
    background-color: var(--gray-100);
    transform: translateY(-2px);
}

@media (max-width: 767px) {
    .privacy-popup-content {
        width: 95%;
        max-height: 80vh;
    }
    
    .popup-body {
        max-height: 50vh;
    }
    
    .popup-footer {
        flex-direction: column-reverse;
        align-items: center;
    }
    
    .continue-button, .cancel-button {
        width: 100%;
        margin-bottom: 10px;
        padding: 12px 20px;
        font-size: 16px;
    }
}

/* Estilos para el mensaje de éxito del SMS */
.sms-success-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.95);
    padding: 20px 25px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    max-width: 400px;
    width: 90%;
    text-align: center;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeIn 0.3s ease-out;
}

.sms-success-message.fade-out {
    animation: fadeOut 0.5s ease-out;
}

.sms-success-message .success-icon {
    width: 60px;
    height: 60px;
    color: var(--primary);
    margin-bottom: 15px;
    stroke-width: 2;
}

.sms-success-message p {
    font-size: 16px;
    color: var(--gray-800);
    margin: 0;
    line-height: 1.4;
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    to {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.9);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

.contact-privacy a:hover {
    text-decoration: underline;
}

/* Estilos específicos para el formulario SMS en el menú superior */
.header-sms-option {
    position: absolute;
    top: 100%;
    right: 0;
    width: 300px;
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    margin-top: 0.5rem;
    z-index: 1000;
    display: none;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.header-sms-option.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.header-sms-option .contact-sms-form {
    display: flex;
}

.header-cta {
    position: relative;
}

/* Phone Popup Styles */
.phone-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.phone-popup.active {
    display: flex;
}

.phone-popup-content {
    background-color: var(--white);
    border-radius: 8px;
    max-width: 450px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    position: relative;
}

.phone-popup .popup-header {
    padding: 15px 20px;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 8px 8px 0 0;
}

.phone-popup .popup-header h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
}

.phone-popup .popup-description {
    text-align: center;
    font-size: 0.95rem;
    color: var(--gray-600);
    margin-bottom: 20px;
}

.phone-input-group {
    margin-bottom: 20px;
}

.phone-input-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark);
}

.phone-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--gray-300);
    border-radius: 6px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.phone-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 94, 0, 0.1);
    outline: none;
}

.phone-privacy {
    margin-bottom: 15px;
}

.phone-send-button {
    background-color: var(--primary);
    color: var(--white);
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
    width: 100%;
    font-size: 16px;
    margin-bottom: 10px;
}

.phone-send-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.phone-send-button:disabled {
    background-color: var(--gray-400);
    cursor: not-allowed;
}

@media (max-width: 767px) {
    .phone-popup-content {
        width: 95%;
    }
}

.contact-sms-option, .contact-sms-form {
    display: none !important;
}

/* Estilos personalizados para el botón "Déjanos tu teléfono" en el recuadro del asesor */
.contact-options .primary-button.sms-button {
    background-color: var(--orange);
    color: var(--white);
    text-align: center;
    width: 100%;
    display: block;
}

.contact-options .primary-button.sms-button:hover {
    background-color: var(--primary-dark);
}

/* Estilo para el mensaje de políticas ya aceptadas */
.accepted-privacy-message {
    background-color: rgba(0, 128, 0, 0.1);
    border-left: 3px solid var(--green);
    padding: 10px 15px;
    margin: 15px 0;
    border-radius: 0 4px 4px 0;
}

.accepted-privacy-message p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--green-dark);
    font-weight: 500;
}

/* Estilo para el mensaje de carga durante envío de SMS */
.sms-loading-message {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

.sms-loading-message p {
    color: white;
    font-size: 18px;
    margin-top: 15px;
    font-weight: 500;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--primary);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 767px) {
    .main-nav {
        width: 100%;
    }
    
    .header-content {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .header-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .distribuidor-logo {
        margin-bottom: 10px;
        max-width: 180px;
    }
    
    .header-cta {
        display: flex;
        flex-direction: column;
        width: 100%;
        align-items: center;
    }
    
    .whatsapp-button, 
    .primary-button.sms-button {
        width: 100%;
        margin: 5px 0;
        text-align: center;
        padding: 10px 15px;
        font-size: 14px;
        justify-content: center;
    }
    
    .whatsapp-icon {
        width: 18px;
        height: 18px;
        margin-right: 8px;
    }
    
    .main-nav.active .header-cta {
        display: flex;
    }
}

@media (max-width: 767px) {
    .hero-background::before,
    .hero-background::after {
        width: 100%;
        height: 100%;
    }
    
    .hero-background::before {
        opacity: 0.8;
    }
    
    .hero-background::after {
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7));
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        padding-top: 1rem;
        padding-bottom: 3rem;
    }
    
    .hero-text {
        padding-left: 0;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
        text-align: center;
        padding: 0.5rem 1rem;
    }
    
    .hero-title-container {
        margin-bottom: 1.5rem;
    }
    
    .price-amount {
        font-size: 4.5rem;
    }
    
    .price-decimal {
        font-size: 2.5rem;
    }
    
    .promo-banner {
        margin-left: auto;
        margin-right: auto;
        max-width: 350px;
        padding: 1.5rem 1rem;
    }
    
    .hero-cta {
        display: none;
    }
    
    .contact-panel {
        margin: 0 auto;
        max-width: 100%;
    }

    /* Mejoras para el contenedor móvil */
    .hero-mobile-container {
        display: flex;
        flex-direction: column;
        max-width: 90%;
        margin: 0 auto;
        box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
        border-radius: 0.75rem;
        overflow: hidden;
    }

    .promo-banner {
        border-radius: 0.75rem 0.75rem 0 0;
        max-width: 100%;
        margin-bottom: 0;
        box-shadow: none;
        padding: 1.5rem 1rem;
    }

    .contact-panel {
        border-radius: 0 0 0.75rem 0.75rem;
        max-width: 100%;
        box-shadow: none;
        border-top: 0;
    }

    .hero-section {
        padding: 2rem 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0;
    }

    .hero-text {
        margin-bottom: 0;
        padding: 0;
        max-width: 100%;
    }

    /* Quitar doble visualización */
    .hero-image {
        display: none;
    }
}

/* Mobile Navigation */
@media (max-width: 767px) {
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--white);
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        padding: 5rem 1.5rem 2rem;
        overflow-y: auto;
        transition: right 0.3s ease;
        z-index: 15;
    }
    
    .main-nav.active {
        right: 0;
        display: block;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .mobile-menu-buttons {
        display: flex;
        flex-direction: row;
        gap: 6px;
        margin-top: 1.5rem;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .mobile-whatsapp-button,
    .mobile-phone-button {
        flex: 0;
        min-width: 36px;
        max-width: 36px;
        padding: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0;
        font-weight: 600;
        border-radius: 4px;
        text-decoration: none;
        transition: all 0.3s ease;
        height: 36px;
    }
    
    .mobile-whatsapp-button {
        background-color: var(--green);
        color: var(--white);
    }
    
    .mobile-whatsapp-button:hover {
        background-color: var(--green-dark);
    }
    
    .mobile-phone-button {
        background-color: var(--primary);
        color: var(--white);
    }
    
    .mobile-phone-button:hover {
        background-color: var(--primary-dark);
    }
    
    .mobile-menu-icon {
        width: 20px;
        height: 20px;
        margin-right: 0;
        fill: currentColor;
    }
    
    .nav-link {
        font-size: 1rem;
        padding: 0.4rem 0;
        display: block;
        width: 100%;
    }

    .main-nav .distribuidor-logo {
        width: 120px;
        object-fit: contain;
        filter: none;
        transform: none;
        display: block;
        margin: 0 auto 15px;
    }

    .main-nav .header-cta {
        display: none;
    }

    .main-nav .header-cta.active {
        display: flex;
        flex-direction: row;
        gap: 8px;
        margin-top: 2rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    .main-nav.active .header-cta {
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 8px;
        margin-top: 1.5rem;
        padding: 0 10px;
        flex-wrap: wrap;
    }
}

@media (max-width: 767px) {
    .promo-banner {
        text-align: center;
    }
    
    .promo-price {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
        margin: 15px auto;
    }
    
    .price-amount {
        font-size: 6rem;
        line-height: 1;
        text-align: center;
    }
    
    .price-decimal {
        font-size: 3rem;
    }
    
    .price-period {
        font-size: 1.5rem;
        margin-top: 0.5rem;
    }
    
    .promo-note {
        text-align: center;
        font-size: 0.9rem;
    }
}

@media (max-width: 767px) {
    .todo-incluido-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .todo-incluido-item {
        padding: 12px;
    }
    
    .todo-incluido-icon {
        margin-bottom: 1rem;
        width: 80px;
        height: 80px;
        min-width: 80px; /* Asegura un tamaño mínimo para iOS */
        min-height: 80px; /* Asegura un tamaño mínimo para iOS */
    }
    
    .todo-incluido-icon img {
        max-height: 70px;
        min-height: 40px; /* Asegura un tamaño mínimo para iOS */
        width: auto;
        height: auto;
    }
    
    .todo-incluido-item-title {
        font-size: 1.25rem;
        line-height: 1.3;
        margin-bottom: 0.6rem;
        font-weight: 700;
    }
    
    .todo-incluido-item-extra {
        font-size: 1.1rem;
        font-weight: 700;
    }
    
    .todo-incluido-title {
        font-size: 2rem;
        margin-bottom: 2.5rem;
        padding: 0 15px;
    }
    
    .todo-incluido-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        gap: 1rem;
    }
    
    .todo-incluido-btn {
        width: 100%;
        padding: 1.2rem 1.5rem;
        font-size: 1.1rem;
    }
}

/* Estilos para los botones móviles */
.nav-buttons-mobile {
    display: none; /* Por defecto oculto en escritorio */
    align-items: center;
    gap: 0.5rem;
}

.nav-buttons-mobile .nav-whatsapp-button,
.nav-buttons-mobile .nav-phone-button {
    padding: 0.4rem 0.6rem;
    font-size: 0.8rem;
}

.nav-buttons-mobile .whatsapp-icon {
    width: 1rem;
    height: 1rem;
    margin-right: 0.25rem;
}

.nav-buttons-mobile .nav-phone-button {
    white-space: nowrap;
}

@media (max-width: 767px) {
    .nav-buttons-mobile {
        display: flex;
    }

    .distribuidor-badge {
        display: none;
    }
    
    /* Ordenamos los elementos para dispositivos móviles */
    .header-container {
        display: grid;
        grid-template-columns: auto 1fr auto;
        grid-template-areas: "logo buttons toggle";
        align-items: center;
        gap: 0.5rem;
    }

    .logo {
        grid-area: logo;
    }
    
    .nav-buttons-mobile {
        grid-area: buttons;
        justify-content: center;
    }
    
    .main-nav {
        grid-area: toggle;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }

    .logo-img {
        height: 3rem; /* Aumentamos el tamaño del logo en móvil */
    }
    
    .nav-container {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: var(--primary);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.3s ease;
        z-index: 99;
        padding: 2rem 1rem;
    }
    
    .main-nav.active .nav-container {
        right: 0;
    }

    .nav-container .nav-whatsapp-button,
    .nav-container .nav-phone-button {
        width: 80%;
        justify-content: center;
        padding: 0.75rem 1rem;
        font-size: 1rem;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(10px) rotate(45deg);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
    }
}

/* Privacy Checkbox */
.privacy-checkbox {
    margin: 15px 0;
}

.privacy-message {
    color: #555;
    font-size: 14px;
    margin: 0;
    padding: 5px 0;
    text-align: center;
}

.privacy-accepted p {
    display: flex;
    align-items: center;
    justify-content: center;
}

.privacy-accepted {
    background-color: rgba(76, 175, 80, 0.1);
    border-radius: 8px;
    padding: 10px;
    margin: 15px 0;
    border-left: 3px solid #4CAF50;
}

.privacy-accepted p {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4CAF50;
    margin: 0;
    font-size: 14px;
    font-weight: 500;
}

/* Footer Partners Styles */
.footer-partners {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px; /* Reducido de 20px a 10px */
}

.track4x-logo {
    height: 30px; /* Reducido de 40px a 30px */
    margin: 0 10px;
}

@media (max-width: 768px) {
    .footer-partners {
        margin-top: 10px; /* Reducido de 15px a 10px */
    }
    
    .track4x-logo {
        height: 25px; /* Reducido de 30px a 25px */
    }
    
    .footer-logo {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }
}

.footer-links {
    display: none; /* Como todos los elementos están ocultos, ocultamos el contenedor */
}

/* Popup de Política de Privacidad */
.popup-header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.popup-logo {
    height: 30px;
    width: auto;
}

@media (max-width: 767px) {
    .popup-header-logo {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .popup-logo {
        height: 25px;
    }
}

/* Estilos para flecha de cerrar */
.close-popup {
    cursor: pointer;
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
    color: white;
    transition: color 0.2s ease;
}

.close-popup:hover {
    color: #f0f0f0;
}

/* Ajuste para el scrollbar */
.popup-body::-webkit-scrollbar {
    width: 8px;
}

.popup-body::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.popup-body::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

.popup-body::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Estilos para los encabezados en los popups */
.popup-body h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin: 1.5rem 0 0.75rem;
}

.popup-body h4:first-child {
    margin-top: 0;
}

.popup-body p {
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--gray-700);
}

/* Banner de Cookies */
.cookies-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(51, 51, 51, 0.95);
    color: white;
    padding: 15px 0;
    z-index: 9998;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    display: none; /* Se mostrará con JavaScript */
}

.cookies-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.cookies-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    flex: 1;
    min-width: 250px;
}

.cookies-content a {
    color: var(--primary);
    text-decoration: underline;
    font-weight: 600;
}

.cookies-content a:hover {
    color: #ffb380;
}

.cookies-buttons {
    display: flex;
    gap: 10px;
}

.cookies-accept-btn {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s;
}

.cookies-accept-btn:hover {
    background-color: var(--primary-dark);
}

@media (max-width: 768px) {
    .cookies-content {
        flex-direction: column;
        text-align: center;
        padding: 10px 15px;
    }
    
    .cookies-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .cookies-accept-btn {
        width: 100%;
    }
}

/* Características Destacadas Section */
.caracteristicas-section {
    padding: 5rem 0;
    background-color: var(--gray-50);
    border-top: 1px solid var(--gray-200);
}

.caracteristicas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.caracteristica-card {
    background-color: var(--white);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--gray-200);
}

.caracteristica-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.caracteristica-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.caracteristica-icon {
    width: 3rem;
    height: 3rem;
    padding: 0.5rem;
    background-color: var(--primary);
    border-radius: 0.75rem;
}

.caracteristica-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
}

.caracteristica-description {
    font-size: 1rem;
    color: var(--gray-700);
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

.caracteristica-features {
    list-style: none;
    margin: 0;
    padding: 0;
}

.caracteristica-features li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.4;
}

.caracteristica-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

@media (max-width: 991px) {
    .caracteristicas-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .caracteristica-card {
        padding: 1.5rem;
    }
}

/* Dynamic Notifications Styles */
.dynamic-notifications {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
    pointer-events: none;
}

.notification-popup {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    padding: 12px 16px;
    margin-bottom: 10px;
    max-width: 300px;
    transform: translateX(-120%);
    opacity: 0;
    pointer-events: auto;
    transition: all 0.3s ease;
}

.notification-popup.slide-in {
    transform: translateX(0);
    opacity: 1;
}

.notification-popup.slide-out {
    transform: translateX(-120%);
    opacity: 0;
}

.notification-icon {
    background-color: var(--primary);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    min-width: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
}

.notification-icon svg {
    width: 20px;
    height: 20px;
    color: white;
}

.notification-content {
    flex: 1;
}

.notification-text {
    margin: 0;
    font-size: 0.9rem;
    color: var(--gray-800);
    line-height: 1.4;
}

.notification-time {
    font-size: 0.75rem;
    color: var(--gray-500);
    display: block;
    margin-top: 2px;
}

.hidden {
    display: none;
}

@media (max-width: 768px) {
    .dynamic-notifications {
        bottom: 70px;
    }
    
    .notification-popup {
        max-width: calc(100vw - 40px);
    }
}

/* Oferta Especial Section */
.oferta-especial-section {
    background: linear-gradient(135deg, var(--primary) 0%, #ff8533 100%);
    padding: 3rem 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.oferta-especial-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
}

.oferta-especial-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.oferta-badge {
    display: inline-block;
    background-color: white;
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.oferta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.oferta-details {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.oferta-detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.oferta-detail-item svg {
    width: 24px;
    height: 24px;
    color: white;
}

.oferta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: white;
    color: var(--primary);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.oferta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.oferta-button svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.oferta-button:hover svg {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .oferta-especial-section {
        padding: 2rem 1rem;
    }

    .oferta-title {
        font-size: 2rem;
    }

    .oferta-details {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
        padding: 0 1rem;
    }

    .oferta-detail-item {
        font-size: 1rem;
    }
}

/* Estilos específicos para el botón del teléfono en el menú */
.nav-container .primary-button.sms-button {
    background-color: var(--primary);
    color: white;
    font-size: 0.8rem;
    padding: 0.75rem 1rem;
    border-radius: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 250px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    font-weight: 600;
}

.nav-container .primary-button.sms-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1024px) {
    .nav-container .primary-button.sms-button {
        max-width: 200px;
        font-size: 0.7rem;
        padding: 0.65rem 0.8rem;
    }
}

.call-button {
    /* ... existing code ... */
}

.call-button:hover {
    /* ... existing code ... */
}

.contact-call-option {
    /* ... existing code ... */
}

.contact-call-button {
    /* ... existing code ... */
}

.contact-call-button:hover {
    /* ... existing code ... */
}

.contact-call-form {
    /* ... existing code ... */
}

.contact-call-option.active .contact-call-form {
    /* ... existing code ... */
}

.call-form-container {
    /* ... existing code ... */
}

/* Botón Llamada/Teléfono */
.primary-button.call-button {
    /* ... existing code ... */
}

.promo-mobile-buttons .primary-button.call-button {
    /* ... existing code ... */
}

.promo-mobile-buttons .primary-button.call-button:hover {
    /* ... existing code ... */
}

/* Estilos para el mensaje de éxito de la llamada */
.call-success-message {
    /* ... existing code ... */
}

.call-success-message.fade-out {
    /* ... existing code ... */
}

.call-success-message .success-icon {
    /* ... existing code ... */
}

.call-success-message p {
    /* ... existing code ... */
}

/* Estilos específicos para el formulario de llamada en el menú superior */
.header-call-option {
    /* ... existing code ... */
}

.header-call-option.active {
    /* ... existing code ... */
}

.header-call-option .contact-call-form {
    /* ... existing code ... */
}

.contact-call-option, .contact-call-form {
    /* ... existing code ... */
}

.contact-options .primary-button.call-button {
    /* ... existing code ... */
}

.contact-options .primary-button.call-button:hover {
    /* ... existing code ... */
}

/* Estilo para el mensaje de carga durante la llamada */
.call-loading-message {
    /* ... existing code ... */
}

.call-loading-message p {
    /* ... existing code ... */
}

.primary-button.call-button {
    /* ... existing code ... */
}

.nav-container .primary-button.call-button {
    /* ... existing code ... */
}

.nav-container .primary-button.call-button:hover {
    /* ... existing code ... */
}

.nav-container .primary-button.call-button {
    /* ... existing code ... */
}

.nav-buttons-mobile .nav-phone-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background-color: #ff6b00;
    color: white;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    width: 100%;
    margin: 5px 0;
}

.nav-buttons-mobile .nav-phone-button:hover {
    background-color: #e65c00;
    transform: translateY(-2px);
}

@media (max-width: 767px) {
    .nav-buttons-mobile {
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 10px;
    }
    
    .nav-buttons-mobile .nav-phone-button {
        margin: 5px 0;
    }
}

.nav-buttons-mobile .primary-button.sms-button {
    background-color: var(--primary);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    margin: 0;
}

.nav-buttons-mobile .primary-button.sms-button:hover {
    background-color: var(--primary-dark);
}

