/* ===================================================================
   main.css - ESTILOS CENTRALIZADOS Y OPTIMIZADOS
   Reemplaza: common.css, navbar.css, templatemo-softy-pinko.css,
              1111estilos.css, Whatsapp/style.css y estilos inline
   =================================================================== */

/* ============================================
   VARIABLES GLOBALES Y RESET
   ============================================ */
:root {
    --primary-purple: #fc7c34;
    --highlight-orange: #F37D35;
    --text-dark: #333333;
    --text-gray: #757575;
    --bg-light: #FBFBFB;
    --primary-color: #F37D35;
    --header-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #f4f4f4;
    padding-top: var(--header-height);
    color: var(--text-dark);
    animation: pageFadeIn 0.6s ease;
}

@keyframes pageFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ============================================
   ANIMACIONES COMUNES
   ============================================ */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform, opacity;
}
.fade-in-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   BOTONES
   ============================================ */
.main-button,
.main-button-slider {
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}
.main-button:hover,
.main-button-slider:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
.main-button:active,
.main-button-slider:active {
    transform: translateY(-1px) scale(0.98);
}

a.main-button-slider {
    font-size: 13px;
    border-radius: 20px;
    padding: 12px 20px;
    background-color: #fc7c34;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 0.25px;
    transition: all 0.3s ease 0s;
}
a.main-button-slider:hover {
    background-color: #fc7c34;
}
a.main-button {
    font-size: 13px;
    border-radius: 20px;
    padding: 12px 20px;
    background-color: #fc7c34;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 0.25px;
    transition: all 0.3s ease 0s;
}
a.main-button:hover {
    background-color: #fc7c34;
}
button.main-button {
    outline: none;
    border: none;
    cursor: pointer;
    font-size: 13px;
    border-radius: 20px;
    padding: 12px 20px;
    background-color: #fc7c34;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 0.25px;
    transition: all 0.3s ease 0s;
}
button.main-button:hover {
    background-color: #fc7c34;
}

/* ============================================
   NAVBAR (reemplaza navbar.css)
   ============================================ */
.navbar-tovarsat {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: var(--header-height);
    background: #ffffff;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    z-index: 9999;
    display: flex;
    align-items: center;
    padding: 0 40px;
    transition: all 0.3s ease;
}
.navbar-tovarsat.scrolled {
    height: 65px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}
.navbar-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.navbar-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    height: var(--header-height);
    transition: height 0.3s ease;
}
.navbar-tovarsat.scrolled .navbar-logo {
    height: 65px;
}
.navbar-logo img {
    height: 55px;
    width: auto;
    display: block;
    transition: height 0.3s ease;
}
.navbar-tovarsat.scrolled .navbar-logo img {
    height: 45px;
}
.navbar-menu {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 5px;
}
.navbar-menu li {
    display: flex;
    align-items: center;
    height: var(--header-height);
    transition: height 0.3s ease;
}
.navbar-tovarsat.scrolled .navbar-menu li {
    height: 65px;
}
.navbar-menu li a {
    display: flex;
    align-items: center;
    padding: 0 18px;
    height: 100%;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    position: relative;
    transition: color 0.3s ease;
    white-space: nowrap;
}
.navbar-menu li a::after {
    content: '';
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--primary-purple);
    border-radius: 2px;
    transition: width 0.3s ease;
}
.navbar-tovarsat.scrolled .navbar-menu li a::after {
    bottom: 12px;
}
.navbar-menu li a:hover::after,
.navbar-menu li a.active::after {
    width: 60%;
}
.navbar-menu li a:hover {
    color: var(--primary-purple);
}
.navbar-menu li a.active {
    color: var(--primary-purple);
    font-weight: 600;
}
.navbar-menu li a.btn-soporte {
    background: var(--primary-purple);
    color: #fff !important;
    padding: 8px 22px;
    border-radius: 25px;
    height: auto !important;
    margin-left: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}
.navbar-menu li a.btn-soporte::after {
    display: none;
}
.navbar-menu li a.btn-soporte:hover {
    background: #5a0f73;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(112, 19, 142, 0.35);
}
.navbar-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    gap: 5px;
}
.navbar-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}
.navbar-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}
.navbar-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.navbar-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* Navbar responsive */
@media (max-width: 1024px) {
    .navbar-tovarsat { padding: 0 20px; }
    .navbar-menu li a { padding: 0 12px; font-size: 13px; }
}
@media (max-width: 991px) {
    :root { --header-height: 70px; }
    .navbar-tovarsat { padding: 0 15px; }
    .navbar-toggle { display: flex; }
    .navbar-menu {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        padding: 20px 30px;
        gap: 0;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        transform: translateY(-120%);
        opacity: 0;
        transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
        pointer-events: none;
        height: auto;
        max-height: calc(100vh - var(--header-height));
        overflow-y: auto;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }
    .navbar-menu.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    .navbar-menu li {
        height: auto !important;
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }
    .navbar-menu li:last-child { border-bottom: none; }
    .navbar-menu li a {
        padding: 14px 10px !important;
        height: auto !important;
        width: 100%;
        font-size: 15px;
        font-weight: 500;
    }
    .navbar-menu li a::after { display: none; }
    .navbar-menu li a.btn-soporte {
        background: transparent !important;
        color: var(--primary-purple) !important;
        padding: 14px 10px !important;
        margin: 0 !important;
        border-radius: 0 !important;
        font-weight: 600;
        justify-content: flex-start;
    }
    .navbar-menu li a.btn-soporte:hover {
        background: transparent !important;
        transform: none !important;
        box-shadow: none !important;
        color: #5a0f73 !important;
    }
    .navbar-logo img { height: 45px; }
    .navbar-tovarsat.scrolled .navbar-logo img { height: 38px; }
    .navbar-tovarsat.scrolled .navbar-menu { top: 65px; }
}
@media (max-width: 480px) {
    :root { --header-height: 60px; }
    .navbar-tovarsat { padding: 0 12px; }
    .navbar-logo img { height: 38px; }
    .navbar-tovarsat.scrolled .navbar-logo img { height: 32px; }
    .navbar-menu { padding: 15px 20px; }
    .navbar-menu li a { font-size: 14px; padding: 12px 8px !important; }
}

/* ============================================
   FOOTER (reemplaza estilos inline de footer.html)
   ============================================ */
footer {
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    color: #eef2f7;
    padding: 2.5rem 1.5rem 1.8rem;
    margin-top: auto;
    border-top: 3px solid #6c63ff;
    position: relative;
    overflow: hidden;
}
footer .social {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.8rem;
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}
footer .social li {
    display: inline-block;
}
footer .social li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: #dce3ed;
    font-size: 1.2rem;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    position: relative;
}
footer .social li a svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}
footer .social li a:hover {
    transform: translateY(-4px) scale(1.05);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}
footer .social li:nth-child(1) a:hover { background: #1877f2; border-color: #1877f2; }
footer .social li:nth-child(2) a:hover { background: radial-gradient(circle at 30% 30%, #feda77, #d62976, #962fbf); border-color: #d62976; }
footer .social li:nth-child(3) a:hover { background: #000; border-color: #fff; }
footer .social li:nth-child(4) a:hover { background: #25d366; border-color: #25d366; }
footer .social li:nth-child(5) a:hover { background: #010101; border-color: #fe2c55; box-shadow: 0 6px 20px rgba(254, 44, 85, 0.3); }
footer .social li:nth-child(6) a:hover { background: #0d0d0d; border-color: #39e09b; box-shadow: 0 6px 20px rgba(57, 224, 155, 0.25); }
footer .text-white {
    text-align: center;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
footer .text-white strong {
    font-weight: 500;
    letter-spacing: 0.3px;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #dce3ed;
}
footer .text-white strong:first-child { color: #b8c6db; }
footer .text-white a {
    color: #6c63ff;
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
    font-weight: 500;
    font-size: 0.85rem;
}
footer .text-white a:hover {
    color: #ff6b6b;
    text-shadow: 0 0 20px rgba(255, 107, 107, 0.15);
    text-decoration: underline;
}
@media (max-width: 768px) {
    footer { padding: 2rem 1rem 1.5rem; }
    footer .social li a { width: 40px; height: 40px; font-size: 1rem; }
    footer .social li a svg { width: 16px; height: 16px; }
    footer .text-white strong { font-size: 0.8rem; }
    footer .text-white a { font-size: 0.75rem; }
}
@media (max-width: 400px) {
    footer .social { gap: 0.5rem; }
    footer .social li a { width: 36px; height: 36px; font-size: 0.9rem; }
    footer .social li a svg { width: 14px; height: 14px; }
}

/* ============================================
   WHATSAPP FLOTANTE (unifica footer + Whatsapp/style.css)
   ============================================ */
.float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    text-align: center;
    font-size: 2.2rem;
    box-shadow: 0 4px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.15);
}
.float .my-float {
    margin: 0;
    line-height: 1;
}
.float:hover {
    transform: scale(1.1) translateY(-5px);
    background: #1ebe5c;
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.5);
    color: #fff;
    text-decoration: none;
}
@media (max-width: 768px) {
    .float {
        width: 54px;
        height: 54px;
        font-size: 1.8rem;
        bottom: 20px;
        right: 20px;
    }
}
@media (max-width: 400px) {
    .float {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
        bottom: 16px;
        right: 16px;
    }
}

/* ============================================
   WELCOME AREA (fondo de olas + banner)
   ============================================ */
.welcome-area {
    position: relative;
    background: linear-gradient(60deg, rgba(84,58,183,1) 0%, rgba(0,172,193,1) 100%);
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}
.welcome-area .header-text {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 80px 0;
    text-align: center;
}
.welcome-area .header-text h1 {
    color: #fff;
    font-weight: 700;
    font-size: 48px;
    margin-bottom: 20px;
}
.welcome-area .header-text p {
    color: rgba(255,255,255,0.9);
    font-size: 18px;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 30px;
}
.welcome-area .header-text .main-button-slider {
    display: inline-block;
    padding: 14px 40px;
    background: #fff;
    color: var(--primary-purple, #6c4fc7);
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.welcome-area .header-text .main-button-slider:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.25);
}
/* Olas */
.waves-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20vh;
    min-height: 100px;
    max-height: 180px;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}
.waves-container svg {
    width: 100%;
    height: 100%;
    display: block;
}
.parallax > use {
    animation: move-forever 25s cubic-bezier(.55,.5,.45,.5) infinite;
}
.parallax > use:nth-child(1) { animation-delay: -2s; animation-duration: 7s; }
.parallax > use:nth-child(2) { animation-delay: -3s; animation-duration: 10s; }
.parallax > use:nth-child(3) { animation-delay: -4s; animation-duration: 13s; }
.parallax > use:nth-child(4) { animation-delay: -5s; animation-duration: 20s; }
@keyframes move-forever {
    0% { transform: translate3d(-90px,0,0); }
    100% { transform: translate3d(85px,0,0); }
}
@media (max-width: 768px) {
    .welcome-area .header-text h1 { font-size: 30px; }
    .welcome-area .header-text p { font-size: 16px; padding: 0 15px; }
    .waves-container { height: 12vh; min-height: 60px; max-height: 100px; }
}

/* ============================================
   FEATURES (tarjetas de características)
   ============================================ */
.features-small-item {
    cursor: pointer;
    display: block;
    background: #FFFFFF;
    box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.10);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease 0s;
    position: relative;
    margin-bottom: 30px;
}
.features-small-item:hover .icon {
    background-color: #fc7c34;
}
.features-small-item .icon {
    transition: all 0.3s ease 0s;
    width: 90px;
    height: 90px;
    line-height: 90px;
    margin: auto;
    position: relative;
    margin-bottom: 30px;
    background: #8261ee;
    border-radius: 50%;
}
.features-small-item .icon i {
    font-size: 18px;
    color: #fff;
}
.features-small-item .icon img {
    max-width: 60px;
    height: auto;
}
.features-small-item .features-title {
    font-weight: 500;
    font-size: 18px;
    color: #1e1e1e;
    letter-spacing: 0.7px;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}
.features-small-item p {
    font-weight: 400;
    font-size: 13px;
    color: #777;
    letter-spacing: 0.5px;
    line-height: 25px;
    position: relative;
    z-index: 2;
}
.home-feature {
    padding-bottom: 0px;
    padding-top: 30px;
    margin-top: -220px;
    z-index: 9;
}
@media (max-width: 991px) {
    .home-feature {
        padding-bottom: 0px;
        padding-top: 0px;
        margin-top: 0px;
    }
}

/* ============================================
   MINI / OFICINAS (parallax sin imagen de fondo)
   ============================================ */
.mini {
    min-height: 215px;
    overflow: hidden;
    position: relative;
    padding-top: 90px;
    padding-bottom: 90px;
    background: #f0f2f5 !important;
    background-image: none !important;
}
.mini::before { display: none !important; content: none !important; }
.mini .mini-content { position: relative; z-index: 3; }
.mini .mini-content .info {
    text-align: center;
    color: #1e1e1e;
    padding-top: 20px;
    padding-bottom: 20px;
}
.mini .mini-content .info h1 {
    color: #1e1e1e;
    font-weight: 500;
    font-size: 28px;
    letter-spacing: 0.25px;
    margin-bottom: 30px;
}
.mini .mini-content .info p {
    letter-spacing: 1px;
    margin-bottom: 40px;
    color: #555;
    letter-spacing: 0.25px;
    line-height: 26px;
    font-weight: 400;
    font-size: 15px;
}
.mini .mini-content .mini-box {
    display: block;
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    margin-bottom: 30px;
    position: relative;
    transition: all 0.3s ease 0s;
    text-align: center;
    text-decoration: none;
    color: #333;
}
.mini .mini-content .mini-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    text-decoration: none;
}
.mini .mini-content .mini-box i img {
    max-width: 60px;
    height: auto;
}
.mini .mini-content .mini-box strong {
    display: block;
    margin-top: 15px;
    font-size: 1.2rem;
    color: var(--primary-purple);
}
.mini .mini-content .mini-box span {
    display: block;
    font-weight: 400;
    font-size: 0.9rem;
    color: #6c757d;
    letter-spacing: .75px;
}

/* ============================================
   PRICING CARDS (reemplaza estilos inline)
   ============================================ */
.pricing-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}
.pricing-card.featured {
    border: 2px solid var(--primary-purple);
    position: relative;
}
.pricing-card.featured:hover {
    transform: translateY(-12px) scale(1.015);
}
.featured-badge {
    background-color: var(--primary-purple);
    color: white;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 0;
    text-align: center;
    border-radius: 9px 9px 0 0;
    margin: -2px -2px 0 -2px;
    animation: badgePulse 2.4s ease-in-out infinite;
}
@keyframes badgePulse {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.15); }
}
.card-body-content { padding: 2.5rem 2rem; flex-grow: 1; }
.plan-title {
    color: var(--primary-purple);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}
.plan-tech {
    color: var(--text-gray);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}
.plan-speed {
    font-weight: 800;
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}
.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 3rem;
    min-height: 120px;
}
.feature-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #4a4a4a;
}
.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-purple);
    font-weight: bold;
    font-size: 1.1rem;
}
.price-row {
    margin-top: auto;
    border-top: 1px solid #eee;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 0 0 12px 12px;
}
.mensualidad-label {
    font-size: 0.8rem;
    color: var(--text-gray);
}
.price-tag {
    color: var(--primary-purple);
    font-weight: 800;
    font-size: 1.5rem;
    text-align: right;
}
.price-period { font-size: 0.9rem; font-weight: 400; }

/* ============================================
   BLOG / SERVICIOS
   ============================================ */
.blog-post-thumb {
    text-align: center;
    margin-bottom: 30px;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}
.blog-post-thumb:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}
.blog-post-thumb .img {
    overflow: hidden;
    border-radius: 20px;
    position: relative;
    height: 200px;
}
.blog-post-thumb .img img { width: 100%; height: 100%; object-fit: cover; }
.blog-post-thumb .blog-content { margin-top: -30px; padding-top: 50px; }
.blog-post-thumb h3 { margin-bottom: 20px !important; }
.blog-post-thumb h3 a {
    font-weight: 500;
    font-size: 18px;
    color: #1e1e1e;
    letter-spacing: 0.25px;
    line-height: 26px;
    transition: all 0.3s ease 0s;
}
.blog-post-thumb h3 a:hover { color: #fc7c34; }
.blog-post-thumb .text {
    font-weight: 400;
    font-size: 13px;
    color: #777;
    letter-spacing: 0.26px;
    line-height: 26px;
    margin-bottom: 15px;
}

/* ============================================
   CANALES DE TV + LIGHTBOX
   ============================================ */
.canales-section {
    padding: 60px 0;
    background-color: #ffffff;
}
.canales-wrapper {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.canales-wrapper:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
}
.canales-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: block;
}
.canales-wrapper .zoom-hint {
    text-align: center;
    margin-top: 15px;
    color: var(--primary-purple);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.canales-wrapper .zoom-hint i { margin-right: 8px; }
.canales-desc {
    text-align: center;
    margin-top: 12px;
    color: var(--text-gray);
    font-size: 0.95rem;
}
.canales-desc strong { color: var(--primary-purple); }

/* Lightbox */
.image-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    z-index: 99999;
    cursor: grab;
    user-select: none;
    overflow: hidden;
}
.image-lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}
.image-lightbox .lightbox-close {
    position: absolute;
    top: 25px;
    right: 35px;
    color: #fff;
    font-size: 45px;
    font-weight: 300;
    cursor: pointer;
    transition: transform 0.3s ease, color 0.3s ease;
    z-index: 10;
    line-height: 1;
    opacity: 0.8;
}
.image-lightbox .lightbox-close:hover {
    transform: rotate(90deg) scale(1.1);
    color: #ff6b6b;
    opacity: 1;
}
.image-lightbox .lightbox-controls {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 25px;
    border-radius: 30px;
    backdrop-filter: blur(4px);
    display: flex;
    gap: 20px;
    align-items: center;
    letter-spacing: 0.5px;
}
.image-lightbox .lightbox-controls span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.image-lightbox .lightbox-controls .divider { opacity: 0.3; }
.image-lightbox .lightbox-img-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 40px;
}
.image-lightbox .lightbox-img-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.15s ease-out;
    transform-origin: center center;
    will-change: transform;
}
.image-lightbox .lightbox-img-container img.dragging {
    cursor: grabbing;
    transition: none;
}
.image-lightbox.active .lightbox-img-container img {
    animation: lightboxZoomIn 0.35s ease-out;
}
@keyframes lightboxZoomIn {
    0% { opacity: 0; transform: scale(0.85); }
    100% { opacity: 1; transform: scale(1); }
}
@media (max-width: 768px) {
    .image-lightbox .lightbox-close { top: 15px; right: 20px; font-size: 35px; }
    .image-lightbox .lightbox-img-container { padding: 20px; }
    .image-lightbox .lightbox-controls { bottom: 20px; padding: 8px 16px; font-size: 12px; gap: 12px; flex-wrap: wrap; justify-content: center; border-radius: 20px; }
    .canales-wrapper { padding: 15px; }
    .canales-section { padding: 40px 0; }
}

/* ============================================
   CONTACTO
   ============================================ */
#contact-us { padding: 160px 0px; }
#contact-us h5 {
    font-weight: 500;
    font-size: 18px;
    color: #1e1e1e;
    letter-spacing: 0.25px;
    line-height: 26px;
}
.contact-text {
    font-weight: 400;
    font-size: 14px;
    color: #6F8BA4;
    letter-spacing: 0.6px;
    line-height: 26px;
}
.contact-text p { margin-bottom: 28px; }
.contact-form input,
.contact-form textarea {
    color: #777;
    font-size: 14px;
    border: 1px solid #eee;
    width: 100%;
    height: 50px;
    outline: none;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 25px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin-bottom: 30px;
}
.contact-form textarea {
    height: 150px;
    resize: none;
    padding: 20px;
}
.contact-text .social { list-style: none; padding: 0; margin: 0; }
.contact-text .social li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.contact-text .social li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--primary-purple);
    color: #fff;
    border-radius: 50%;
    font-size: 16px;
    transition: background 0.3s;
}
.contact-text .social li a:hover { background: #e05f1a; }

/* ============================================
   MODAL
   ============================================ */
.modal.fade .modal-dialog {
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease;
    transform: translateY(20px) scale(0.98);
    opacity: 0;
}
.modal.show .modal-dialog {
    transform: translateY(0) scale(1);
    opacity: 1;
}
.modal .modal-body .form-control {
    margin-bottom: 15px;
}
.modal .modal-footer .main-button { margin: 0 5px; }

/* ============================================
   UTILIDADES COMUNES
   ============================================ */
.section {
    position: relative;
    padding-top: 100px;
    padding-bottom: 80px;
}
.section.colored { background: #f2f2fe; }
.center-heading { text-align: center; }
.center-heading .section-title {
    font-weight: 500;
    font-size: 28px;
    color: #1e1e1e;
    letter-spacing: 1.75px;
    line-height: 38px;
    margin-bottom: 20px;
}
.center-text {
    text-align: center;
    font-weight: 400;
    font-size: 16px;
    color: #777;
    line-height: 28px;
    letter-spacing: 1px;
    margin-bottom: 50px;
}
.center-text p {
    font-size: 15px;
    color: #777;
    margin-bottom: 30px;
}
.centered-card {
    display: flex;
    justify-content: center;
}
.centered-card > * {
    width: 100%;
    max-width: 400px;
}
@media (min-width: 768px) {
    .centered-card > * { max-width: 500px; }
}

/* ============================================
   RESPONSIVE ADICIONAL
   ============================================ */
@media (max-width: 991px) {
    .section { padding-top: 60px; padding-bottom: 60px; }
    #contact-us { padding: 80px 0; }
}