/* ===================================
   RESET Y VARIABLES
=================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --purple-primary: #4D2C8A;
    --orange-primary: #F36B22;
    --white: #FFFFFF;
    --black: #000000;
    --gray-light: #D9D9D9;
    --gray-dark: #5B5B5B;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Sansation', sans-serif;
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

/* ===================================
   HEADER Y NAVEGACIÓN
=================================== */
.header {
    background-color: var(--purple-primary);
    padding: 25px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: padding 0.3s ease, box-shadow 0.3s ease;
}

.header.scrolled {
    padding: 15px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.logo img {
    height: 80px;
    width: auto;
    display: block;
    transition: height 0.3s ease;
}

.header.scrolled .logo img {
    height: 60px;
}

.logo:hover {
    transform: scale(1.05);
}

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

.nav-menu a {
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    position: relative;
}

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

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 8px 16px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 15px;
    transition: all 0.3s ease;
    opacity: 0.5;
}

.lang-option:hover {
    opacity: 0.8;
    background-color: rgba(255, 255, 255, 0.1);
}

.lang-option.active {
    opacity: 1;
    background-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.lang-separator {
    color: rgba(255, 255, 255, 0.4);
    font-size: 16px;
    font-weight: 300;
}

.lang-flag {
    font-size: 20px;
}

.lang-text {
    font-size: 14px;
    font-weight: 700;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 28px;
    cursor: pointer;
}

/* ===================================
   HERO SECTION
=================================== */
.hero {
    margin-top: 130px;
    height: calc(100vh - 130px);
    min-height: 500px;
    max-height: 700px;
    background: linear-gradient(rgba(77, 44, 138, 0.3), rgba(77, 44, 138, 0.3)), 
                url('img/hero.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-content {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    max-width: 600px;
}

.hero p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 35px;
    max-width: 550px;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 35px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: inline-block;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--orange-primary);
    color: var(--white);
    border-color: var(--orange-primary);
}

.btn-primary:hover {
    background-color: #d85a1a;
    border-color: #d85a1a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(243, 107, 34, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border-color: var(--orange-primary);
}

.btn-outline:hover {
    background-color: var(--orange-primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(243, 107, 34, 0.4);
}

/* ===================================
   SECCIÓN POR QUÉ ELEGIR
=================================== */
.why-choose {
    background-color: var(--purple-primary);
    padding: 80px 40px;
    color: var(--white);
    scroll-margin-top: 110px;
    position: relative;
}

.why-choose-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.product-image {
    text-align: center;
}

.product-image img {
    max-width: 500px;
    margin: 0 auto;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3));
}

.why-content h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 50px;
    line-height: 1.2;
    color: var(--orange-primary);
}

.feature-item {
    margin-bottom: 40px;
}

.feature-item h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white);
}

.feature-item p {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--white);
}

.btn-download {
    margin-top: 20px;
    text-transform: uppercase;
    font-size: 16px;
    padding: 18px 40px;
}

/* ===================================
   SECCIÓN VIDEO/CARACTERÍSTICAS
=================================== */
.video-section {
    background-color: var(--orange-primary);
    padding: 80px 40px;
    color: var(--white);
    scroll-margin-top: 110px;
    position: relative;
    margin-top: -1px;
}

.video-section::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: var(--orange-primary);
    clip-path: ellipse(100% 100% at 50% 100%);
}

.video-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.video-section h2 {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: 1px;
}

.video-content {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
}

.video-player {
    position: relative;
    background-color: rgba(0,0,0,0.3);
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 16/9;
    cursor: pointer;
    transition: transform 0.3s ease;
    max-width: 800px;
    width: 100%;
}

.video-player:hover {
    transform: scale(1.02);
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.play-button::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 25px solid var(--purple-primary);
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    margin-left: 5px;
}

.video-player:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
    background-color: var(--white);
}

.benefits-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.benefit-icon {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.benefit-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.2));
}

.benefit-icon:hover {
    transform: translateY(-10px);
}

.benefit-icon:hover img {
    filter: drop-shadow(0 8px 20px rgba(0,0,0,0.3));
}

/* ===================================
   SECCIÓN CARRUSEL
=================================== */
.use-cases {
    padding: 80px 0;
    background-color: var(--white);
    scroll-margin-top: 110px;
    overflow: hidden;
}

.carousel-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 30px;
}

.carousel-container {
    flex: 1;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.carousel-card {
    flex: 0 0 calc(33.333% - 20px);
    width: calc(33.333% - 20px);
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.carousel-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.carousel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-content {
    padding: 30px;
}

.carousel-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--purple-primary);
}

.carousel-content p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--gray-dark);
    margin-bottom: 12px;
    text-align: justify;
}

.carousel-content p:last-child {
    margin-bottom: 0;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(77, 44, 138, 0.1);
    border: none;
    color: var(--purple-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.carousel-btn:hover {
    background-color: var(--purple-primary);
    color: var(--white);
    transform: scale(1.1);
}

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.carousel-btn:disabled:hover {
    background-color: rgba(77, 44, 138, 0.1);
    color: var(--purple-primary);
    transform: scale(1);
}

/* ===================================
   SECCIÓN MAPA
=================================== */
.map-section {
    background-color: var(--purple-primary);
    padding: 80px 40px;
    color: var(--white);
    scroll-margin-top: 110px;
}

.map-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.map-content h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.map-content p {
    font-size: 18px;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 30px auto;
}

.map-buttons {
    display: flex;
    flex-direction: row;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.map-buttons .btn {
    width: auto;
    max-width: 350px;
}

.map-frame {
    background-color: rgba(255,255,255,0.1);
    border-radius: 15px;
    overflow: hidden;
    height: 450px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.map-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===================================
   FOOTER
=================================== */
.footer {
    background-color: var(--gray-dark);
    color: var(--white);
    padding: 60px 40px 20px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

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

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

.footer-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.6;
}

.footer-contact svg {
    flex-shrink: 0;
    margin-top: 2px;
}

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

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

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    margin: 0;
}

/* ===================================
   MODAL VIDEO
=================================== */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.video-modal.active {
    display: flex;
}

.video-modal-content {
    position: relative;
    width: 100%;
    max-width: 900px;
    background-color: var(--black);
    border-radius: 10px;
    overflow: hidden;
}

.video-modal-content video {
    width: 100%;
    max-width: 900px;
    height: auto;
    border: none;
    border-radius: 10px;
    background-color: #000;
}

.close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: var(--white);
    font-size: 36px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.close-modal:hover {
    transform: scale(1.2);
}

.video-modal iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border: none;
}

/* ===================================
   RESPONSIVE DESIGN
=================================== */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 44px;
    }
    
    .why-choose-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .use-cases-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .product-image img {
        max-width: 280px;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 20px;
    }
    
    .nav-menu {
        position: fixed;
        top: 130px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 130px);
        background-color: var(--purple-primary);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        transition: left 0.3s ease, top 0.3s ease, height 0.3s ease;
    }
    
    .header.scrolled .nav-menu {
        top: 90px;
        height: calc(100vh - 90px);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu a {
        font-size: 24px;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .lang-toggle {
        padding: 6px 12px;
        gap: 8px;
    }
    
    .lang-option {
        padding: 3px 6px;
        gap: 4px;
    }
    
    .lang-flag {
        font-size: 16px;
    }
    
    .lang-text {
        font-size: 11px;
    }
    
    .lang-separator {
        font-size: 14px;
    }
    
    .hero {
        height: calc(100vh - 130px);
        min-height: 450px;
        max-height: 600px;
        margin-top: 130px;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .why-choose,
    .video-section,
    .use-cases,
    .map-section {
        padding: 60px 20px;
    }
    
    .why-content h2 {
        font-size: 36px;
        margin-bottom: 35px;
    }
    
    .video-section h2,
    .map-content h2 {
        font-size: 32px;
    }
    
    .map-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .map-buttons .btn {
        width: 100%;
        max-width: 100%;
    }
    
    .feature-item {
        margin-bottom: 30px;
    }
    
    .feature-item h3 {
        font-size: 20px;
    }
    
    .feature-item p {
        font-size: 16px;
    }
    
    .carousel-card {
        flex: 0 0 calc(50% - 15px);
        width: calc(50% - 15px);
    }
    
    .carousel-btn {
        width: 45px;
        height: 45px;
    }
    
    .benefits-icons {
        gap: 20px;
    }
    
    .benefit-icon {
        width: 100px;
        height: 100px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-menu {
        align-items: center;
    }
    
    .footer-contact li {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 50px;
    }
    
    .hero {
        height: calc(100vh - 130px);
        min-height: 400px;
        max-height: 500px;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .hero p {
        font-size: 14px;
    }
    
    .why-content h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .video-section h2,
    .map-content h2 {
        font-size: 26px;
    }
    
    .feature-item h3 {
        font-size: 18px;
    }
    
    .feature-item p {
        font-size: 15px;
    }
    
    .product-image img {
        max-width: 220px;
    }
    
    .benefit-icon {
        width: 90px;
        height: 90px;
    }
    
    .carousel-wrapper {
        padding: 0 20px;
        gap: 15px;
    }
    
    .carousel-card {
        flex: 0 0 100%;
        width: 100%;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .carousel-content {
        padding: 20px;
    }
    
    .carousel-content h3 {
        font-size: 20px;
    }
    
    .carousel-content p {
        font-size: 13px;
    }
}

section {
    scroll-margin-top: 110px;
}

/* ===================================
   WHATSAPP FLOATING BUTTON
=================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    cursor: pointer;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-icon {
    width: 35px;
    height: 35px;
    color: var(--white);
}

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

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

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

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0.1), 0 0 0 20px rgba(37, 211, 102, 0.05);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

/* Responsive WhatsApp Button */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-icon {
        width: 30px;
        height: 30px;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
}

/* ===================================
   ESTILOS PARA PÁGINAS INTERNAS
=================================== */

/* Hero para páginas internas */
.inner-hero {
    margin-top: 130px;
    min-height: 400px;
    background: linear-gradient(135deg, var(--purple-primary) 0%, #6B4BA8 100%);
    padding: 80px 20px;
    display: flex;
    align-items: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Hero con overlay para mejor legibilidad */
.inner-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(77, 44, 138, 0.85) 0%, rgba(107, 75, 168, 0.85) 100%);
    z-index: 1;
}

/* Heroes específicos por página */
.hero-nosotros {
    background-image: url('img/manos_limpias.png');
}

.hero-producto {
    background-image: url('img/aplicacion_de_jabon_1.png');
}

.hero-distribuidores {
    background-image: url('img/lavando_manos.png');
}

.hero-contacto {
    background-image: url('img/aplicacion_de_jabon_2.png');
}

.inner-hero-content {
    max-width: 1400px;
    margin: 0 auto;
    color: var(--white);
    text-align: center;
    position: relative;
    z-index: 2;
}

.inner-hero h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.inner-hero p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Secciones con padding */
.section-padding {
    padding: 80px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-alt {
    background-color: #f9f9f9;
}

/* Headers de sección */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background-color: var(--orange-primary);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--purple-primary);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-description {
    font-size: 18px;
    color: var(--gray-dark);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Grids de características */
.feature-grid {
    display: grid;
    gap: 30px;
    margin-top: 40px;
}

.feature-grid.two-columns {
    grid-template-columns: repeat(2, 1fr);
}

.feature-grid.three-columns {
    grid-template-columns: repeat(3, 1fr);
}

.feature-grid.four-columns {
    grid-template-columns: repeat(4, 1fr);
}

/* Cards con iconos */
.icon-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.icon-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.icon-card-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.icon-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--purple-primary);
    margin-bottom: 15px;
}

.icon-card p {
    font-size: 16px;
    color: var(--gray-dark);
    line-height: 1.6;
}

/* Highlight cards */
.highlight-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: 15px;
    border: 3px solid var(--orange-primary);
    transition: all 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(243, 107, 34, 0.2);
}

.highlight-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--purple-primary);
    margin-bottom: 15px;
}

.highlight-card p {
    font-size: 16px;
    color: var(--gray-dark);
    line-height: 1.6;
}

/* Steps grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.step-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--orange-primary), #FF8C42);
    color: var(--white);
    border-radius: 50%;
    font-size: 28px;
    font-weight: 700;
    line-height: 60px;
    margin-bottom: 20px;
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.step-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.1));
    transition: filter 0.3s ease;
}

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

.step-card:hover .step-icon img {
    filter: drop-shadow(0 4px 12px rgba(243, 107, 34, 0.3));
}

.step-card p {
    font-size: 16px;
    color: var(--gray-dark);
    line-height: 1.6;
}

/* Formularios */
.form {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    font-weight: 700;
    color: var(--purple-primary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 12px 16px;
    border: 2px solid var(--gray-light);
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Sansation', sans-serif;
    transition: all 0.3s ease;
}

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

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

/* Phone input with country code */
.phone-input-wrapper {
    display: flex;
    gap: 10px;
}

.country-code-select {
    flex: 0 0 140px;
    padding: 12px 8px 12px 12px;
    border: 2px solid var(--gray-light);
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Sansation', sans-serif;
    background-color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.country-code-select:focus {
    outline: none;
    border-color: var(--orange-primary);
    box-shadow: 0 0 0 3px rgba(243, 107, 34, 0.1);
}

.phone-input-wrapper input[type="tel"] {
    flex: 1;
}

.form-actions {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.form-feedback {
    text-align: center;
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    font-weight: 700;
    display: none;
}

.form-feedback.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-feedback.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* Image cards */
.image-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.image-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.image-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.image-card-content {
    padding: 30px;
}

.image-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--purple-primary);
    margin-bottom: 15px;
}

.image-card p {
    font-size: 16px;
    color: var(--gray-dark);
    line-height: 1.6;
}

/* Tab system */
.tab-container {
    max-width: 1200px;
    margin: 0 auto;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 15px 40px;
    background-color: var(--white);
    border: 2px solid var(--purple-primary);
    color: var(--purple-primary);
    font-size: 16px;
    font-weight: 700;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tab-btn:hover {
    background-color: rgba(77, 44, 138, 0.1);
}

.tab-btn.active {
    background-color: var(--purple-primary);
    color: var(--white);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    align-items: center;
}

.tab-image {
    text-align: center;
}

.tab-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.tab-text h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--purple-primary);
    margin-bottom: 20px;
}

.tab-text p {
    font-size: 16px;
    color: var(--gray-dark);
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Comparison table */
.comparison-table {
    max-width: 1000px;
    margin: 40px auto;
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th {
    background-color: var(--purple-primary);
    color: var(--white);
    padding: 20px;
    font-size: 18px;
    font-weight: 700;
    text-align: left;
}

.comparison-table td {
    padding: 20px;
    border-bottom: 1px solid var(--gray-light);
    font-size: 16px;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* Contact info boxes */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.contact-info-box {
    background-color: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.contact-info-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.contact-info-box h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--purple-primary);
    margin-bottom: 10px;
}

.contact-info-box p {
    font-size: 16px;
    color: var(--gray-dark);
}

.contact-info-box a {
    color: var(--orange-primary);
    font-weight: 700;
    transition: color 0.3s ease;
}

.contact-info-box a:hover {
    color: var(--purple-primary);
}

/* Videos Grid */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.video-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.video-card .video-thumbnail {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
    background-color: var(--gray-light);
}

.video-card .video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

.video-card .play-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
    opacity: 0.9;
}

.video-card:hover .play-button-overlay {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-card .video-info {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.video-card .video-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--purple-primary) 0%, #6B4BA8 100%);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    align-self: flex-start;
}

.video-card .video-info h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--purple-primary);
    margin-bottom: 10px;
}

.video-card .video-info p {
    font-size: 14px;
    color: var(--gray-dark);
    line-height: 1.6;
    flex: 1;
}

/* Video Carousel (mantener para index.php) */
.video-carousel-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 20px;
}

.video-carousel-container {
    flex: 1;
    overflow: hidden;
    width: 100%;
    padding: 10px;
}

.video-carousel-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.video-carousel-card {
    flex: 0 0 calc(33.333% - 20px);
    width: calc(33.333% - 20px);
    min-height: 420px;
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.video-carousel-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.video-thumbnail {
    width: 100%;
    background-color: #000;
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.video-carousel-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

.play-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
    opacity: 0.9;
}

.video-carousel-card:hover .play-button-overlay {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button-overlay svg {
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
}

.video-info {
    padding: 20px;
    background-color: var(--white);
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 140px;
}

.video-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--orange-primary);
    background-color: rgba(243, 107, 34, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
    width: fit-content;
}

.video-info h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--purple-primary);
    margin-bottom: 8px;
    margin-top: 0;
    line-height: 1.3;
}

.video-info p {
    font-size: 14px;
    color: var(--gray-dark);
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.video-carousel-prev,
.video-carousel-next {
    flex-shrink: 0;
}

/* Gallery styles */
.gallery-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 0 20px;
}

.gallery-container {
    flex: 1;
    overflow: hidden;
    width: 100%;
    padding: 10px;
}

.gallery-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.gallery-item {
    flex: 0 0 calc(33.333% - 20px);
    width: calc(33.333% - 20px);
    min-height: 420px;
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.gallery-item figcaption {
    padding: 20px;
    font-size: 14px;
    color: var(--gray-dark);
    text-align: center;
    line-height: 1.6;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-nav {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(77, 44, 138, 0.1);
    border: none;
    color: var(--purple-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.gallery-nav:hover {
    background-color: var(--purple-primary);
    color: var(--white);
    transform: scale(1.1);
}

.gallery-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.gallery-nav:disabled:hover {
    background-color: rgba(77, 44, 138, 0.1);
    color: var(--purple-primary);
    transform: scale(1);
}

/* Additional product page styles */
.section-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-split-media {
    display: flex;
    justify-content: center;
    align-items: center;
}

.section-split-media img {
    max-width: 80%;
    height: auto;
    border-radius: 15px;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.stat-card {
    background-color: rgba(243, 107, 34, 0.1);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: var(--orange-primary);
    margin-bottom: 10px;
}

.stat-card p {
    font-size: 14px;
    color: var(--gray-dark);
    line-height: 1.4;
}

.bullet-list {
    list-style: none;
    padding: 0;
}

.bullet-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-dark);
}

.bullet-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--orange-primary);
    font-weight: 700;
    font-size: 18px;
}

.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    padding: 15px 0;
    padding-left: 40px;
    position: relative;
    font-size: 18px;
    line-height: 1.6;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    width: 30px;
    height: 30px;
    background-color: var(--orange-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.step-list {
    counter-reset: step-counter;
    list-style: none;
    padding: 0;
}

.step-list li {
    counter-increment: step-counter;
    padding: 15px 0;
    padding-left: 50px;
    position: relative;
    font-size: 18px;
    line-height: 1.6;
}

.step-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, var(--orange-primary), #FF8C42);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.tabs {
    max-width: 1000px;
    margin: 0 auto;
}

.tab-button {
    padding: 15px 30px;
    background-color: transparent;
    border: 2px solid var(--gray-light);
    color: var(--gray-dark);
    font-size: 16px;
    font-weight: 700;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 5px;
}

.tab-button:hover {
    border-color: var(--purple-primary);
    color: var(--purple-primary);
}

.tab-button.active {
    background-color: var(--purple-primary);
    border-color: var(--purple-primary);
    color: var(--white);
}

.tab-contents {
    margin-top: 40px;
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.comparison-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 15px;
    border: 3px solid var(--purple-primary);
}

.comparison-card-alt {
    border-color: var(--gray-light);
}

.comparison-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--purple-primary);
    margin-bottom: 20px;
    text-align: center;
}

/* ===================================
   RESPONSIVE PARA PÁGINAS INTERNAS
=================================== */

@media (max-width: 1024px) {
    .feature-grid.four-columns {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tab-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    
    .videos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .video-carousel-card,
    .gallery-item {
        flex: 0 0 calc(50% - 15px);
        width: calc(50% - 15px);
        min-height: 380px;
    }
    
    .section-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stat-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .inner-hero {
        padding: 60px 20px;
        margin-top: 130px;
    }
    
    .inner-hero h1 {
        font-size: 36px;
    }
    
    .inner-hero p {
        font-size: 16px;
    }
    
    .section-padding {
        padding: 60px 20px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section-description {
        font-size: 16px;
    }
    
    .feature-grid.two-columns,
    .feature-grid.three-columns,
    .feature-grid.four-columns {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .form {
        padding: 30px 20px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .phone-input-wrapper {
        flex-direction: column;
        gap: 10px;
    }
    
    .country-code-select {
        flex: 1;
        width: 100%;
    }
    
    .tab-buttons {
        flex-direction: column;
    }
    
    .tab-btn {
        width: 100%;
    }
    
    .video-carousel-wrapper,
    .gallery-wrapper {
        padding: 0 10px;
        gap: 15px;
    }
    
    .video-carousel-card,
    .gallery-item {
        flex: 0 0 100%;
        width: 100%;
        min-height: 400px;
    }
    
    .tab-button {
        font-size: 14px;
        padding: 12px 20px;
    }
}

@media (max-width: 480px) {
    .inner-hero h1 {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .icon-card,
    .highlight-card,
    .step-card {
        padding: 25px 20px;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .form {
        padding: 25px 15px;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }
}

/* Modal Consigue Bestline */
.bestline-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    animation: fadeIn 0.3s ease;
}

.bestline-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.bestline-modal-content {
    background-color: var(--white);
    border-radius: 15px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.bestline-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 32px;
    color: var(--gray-dark);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 1;
}

.bestline-modal-close:hover {
    background-color: var(--gray-light);
    color: var(--purple-primary);
    transform: rotate(90deg);
}

.bestline-modal-header {
    padding: 40px 40px 20px;
    text-align: center;
    border-bottom: 2px solid var(--gray-light);
}

.bestline-modal-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--purple-primary);
    margin-bottom: 10px;
}

.bestline-modal-header p {
    font-size: 16px;
    color: var(--gray-dark);
}

.bestline-modal-body {
    padding: 30px 40px 40px;
}

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

.bestline-contact-info {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid var(--gray-light);
    text-align: center;
}

.bestline-contact-info p {
    font-size: 16px;
    font-weight: 700;
    color: var(--purple-primary);
    margin-bottom: 20px;
}

.bestline-contact-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.bestline-contact-buttons .btn-whatsapp {
    width: 100%;
    max-width: 400px;
    justify-content: center;
}

.btn-icon {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
}

.btn-icon svg {
    flex-shrink: 0;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-color: #25D366;
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
    border-color: #128C7E;
    transform: translateY(-2px);
}

/* Responsive Modal */
@media (max-width: 768px) {
    .bestline-modal-content {
        width: 95%;
        max-height: 95vh;
    }
    
    .bestline-modal-header {
        padding: 30px 20px 15px;
    }
    
    .bestline-modal-header h2 {
        font-size: 24px;
    }
    
    .bestline-modal-body {
        padding: 20px;
    }
    
    .bestline-contact-buttons {
        flex-direction: column;
    }
    
    .btn-icon {
        width: 100%;
        justify-content: center;
    }
}
