/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    font-display: swap;
    background: #2a2a2a;
    color: #f5f5f5;
    line-height: 1.6;
    overflow-x: hidden;
}

::selection {
    background: #ffb400;
    color: #0a0a0a;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffb400;
    background: rgba(255, 180, 0, 0.1);
    padding: 6px 16px;
    border-radius: 999px;
    margin-bottom: 16px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
}

.section-header h2 span {
    color: #ffb400;
}

.section-header p {
    color: #a0a0a0;
    font-size: 18px;
    max-width: 600px;
    margin: 12px auto 0;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 40, 0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 16px 0;
    transition: all 0.4s ease;
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo i {
    color: #ffb400;
    font-size: 26px;
}

.logo span {
    color: #ffb400;
}

.nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav a {
    color: #c0c0c0;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 18px;
    border-radius: 999px;
    transition: all 0.3s ease;
    position: relative;
}

.nav a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
}

.nav a.active {
    color: #fff;
    background: rgba(255, 180, 0, 0.12);
}

.nav-cta {
    background: #ffb400 !important;
    color: #0a0a0a !important;
    font-weight: 700 !important;
    padding: 8px 24px !important;
}

.nav-cta:hover {
    background: #ffc533 !important;
    transform: scale(1.05);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 60px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(255, 180, 0, 0.06), transparent 70%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 80px;
    align-items: center;
    position: relative;
}

.hero-content {
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    color: #d0d0d0;
    margin-bottom: 28px;
}

.hero-badge i {
    color: #ffb400;
}

.hero h1 {
    font-size: 68px;
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 20px;
    white-space: nowrap;  /* ← ДЕСКТОП: ВСЁ В ОДНУ СТРОКУ */
}

.hero h1 .highlight {
    color: #ffb400;
}

/* ===== МОБИЛЬНЫЙ: ПЕРЕНОС И ЦЕНТР ===== */
@media (max-width: 768px) {
    .hero h1 {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        font-size: 36px;
    }

    .hero h1 .h1-line {
        display: block;
    }

    .hero h1 .highlight {
        color: #ffb400;
    }
}
.hero p {
    font-size: 20px;
    color: #b0b0b0;
    max-width: 540px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.hero p strong {
    color: #fff;
}

/* ===== ITV MESSAGE ===== */
.itv-message {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: rgba(255, 180, 0, 0.06);
    border-left: 4px solid #ffb400;
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 30px;
    max-width: 540px;
}

.itv-message i {
    color: #ffb400;
    font-size: 22px;
    margin-top: 2px;
    flex-shrink: 0;
}

.itv-message span {
    font-size: 15px;
    color: #d0d0d0;
    line-height: 1.5;
}

.itv-message strong {
    color: #fff;
}

/* ===== STATS ===== */
.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 35px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
}

.stat-label {
    font-size: 14px;
    color: #888;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #ffb400;
    color: #0a0a0a;
}

.btn-primary:hover {
    background: #ffc533;
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(255, 180, 0, 0.25);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-3px);
}

/* ===== BOTONES WHATSAPP + TELEGRAM ===== */
.botones-row {
    display: flex;
    gap: 12px;
    margin-top: 4px;
}

.botones-row .btn {
    flex: 1;
    justify-content: center;
    padding: 16px 20px;
    font-size: 16px;
    border-radius: 12px;
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
}

.btn-whatsapp:hover {
    background: #1ebe5a;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.btn-telegram {
    background: #0088cc;
    color: #fff;
}

.btn-telegram:hover {
    background: #0077b5;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 136, 204, 0.3);
}

.btn-whatsapp i,
.btn-telegram i {
    font-size: 20px;
}

/* ===== HERO IMAGE ===== */
.hero-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), inset 0 0 100px rgba(255, 180, 0, 0.04);
}

.image-wrapper img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.image-floating-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 14px 22px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
}

.image-floating-badge i {
    color: #ffb400;
    font-size: 20px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: #666;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: bounceDown 2s infinite;
}

.scroll-indicator i {
    font-size: 16px;
}

@keyframes bounceDown {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

/* ===== SERVICIOS ===== */
.servicios {
    padding: 100px 0;
    background: #0d0d0d;
}

.servicios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.servicio-card {
    background: #141414;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.4s ease;
    text-align: center;
}

.servicio-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 180, 0, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.servicio-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255, 180, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: #ffb400;
}

.servicio-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.servicio-card p {
    color: #a0a0a0;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 18px;
}

.servicio-precio {
    display: inline-block;
    background: rgba(255, 180, 0, 0.1);
    color: #ffb400;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 999px;
    font-size: 15px;
}

/* ===== PRECIOS ===== */
.precios {
    padding: 100px 0;
    background: #0d0d0d;
    overflow: hidden;
}

.precios-wrapper {
    overflow-x: auto;
    overflow-y: visible;
    padding: 10px 0 30px;
    margin: 0 -15px;
    padding-left: 15px;
    padding-right: 15px;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    display: flex;
    justify-content: flex-start;
    gap: 0;
    scrollbar-width: none;
}

.precios-wrapper::-webkit-scrollbar {
    display: none;
}

.precios-grid {
    display: flex;
    gap: 30px;
    padding: 5px 0;
    flex-wrap: nowrap;
    min-width: 100%;
    width: max-content;
    justify-content: flex-start;
}

.precio-card {
    flex: 0 0 calc(100% / 1.2);
    max-width: 320px;
    min-width: 280px;
    background: #141414;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    scroll-snap-align: center;
    margin: 0 auto;
}

.precio-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 180, 0, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.precio-card-destacado {
    border-color: #ffb400;
    background: #1a1a1a;
    transform: scale(1.05);
}

.precio-card-destacado:hover {
    transform: scale(1.05) translateY(-8px);
}

.precio-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffb400;
    color: #0a0a0a;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 18px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.precio-header h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.precio-cantidad {
    font-size: 42px;
    font-weight: 900;
    color: #ffb400;
    margin: 12px 0;
}

.precio-header p {
    color: #888;
    font-size: 15px;
}

.precio-lista {
    list-style: none;
    margin: 25px 0 30px;
    text-align: left;
}

.precio-lista li {
    padding: 8px 0;
    color: #c0c0c0;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.precio-lista li:last-child {
    border-bottom: none;
}

.precio-lista i {
    width: 20px;
}

.precio-lista .fa-check {
    color: #22c55e;
}

.precio-lista .fa-times {
    color: #666;
}

.precio-card .btn-primary {
    width: 100%;
    justify-content: center;
}

.precios-hint {
    text-align: center;
    margin-top: 15px;
    color: #666;
    font-size: 13px;
    display: none;
}

.precios-hint i {
    color: #ffb400;
    animation: moveArrow 1.5s infinite;
}

@keyframes moveArrow {
    0%,
    100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(8px);
    }
}

@media (min-width: 769px) {
    .precios-wrapper {
        overflow: visible;
        margin: 0;
        padding: 0;
        justify-content: center;
        scroll-snap-type: none;
    }

    .precios-grid {
        display: flex;
        gap: 30px;
        justify-content: center;
        flex-wrap: wrap;
        min-width: auto;
        width: 100%;
    }

    .precio-card {
        flex: 1 1 280px;
        max-width: 380px;
        min-width: 250px;
        scroll-snap-align: none;
        margin: 0;
    }

    .precio-card-destacado {
        transform: scale(1.05);
    }

    .precio-card-destacado:hover {
        transform: scale(1.05) translateY(-8px);
    }

    .precios-hint {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .precios-wrapper {
        display: flex;
        overflow-x: auto;
        overflow-y: visible;
        padding: 20px calc((100vw - 280px) / 2) 40px;
        margin: 0;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .precios-wrapper::-webkit-scrollbar {
        display: none;
    }

    .precios-grid {
        display: flex;
        flex-wrap: nowrap;
        gap: 20px;
        width: max-content;
        min-width: auto;
        padding: 0;
        margin: 0;
    }

    .precio-card {
        flex: 0 0 280px;
        width: 280px;
        min-width: 280px;
        max-width: 280px;
        margin: 0;
        scroll-snap-align: center;
        scroll-snap-stop: always;
        padding: 30px 22px;
        transform: none;
    }

    .precio-card-destacado {
        flex: 0 0 290px;
        width: 290px;
        min-width: 290px;
        max-width: 290px;
        scroll-snap-align: center;
        scroll-snap-stop: always;
        transform: none;
    }

    .precio-card-destacado:hover {
        transform: translateY(-5px);
    }

    .precio-cantidad {
        font-size: 34px;
    }

    .precio-card .btn-primary {
        font-size: 14px;
        padding: 12px 16px;
    }

    .precio-lista li {
        font-size: 14px;
        padding: 6px 0;
    }

    .precio-header h3 {
        font-size: 20px;
    }

    .precios-hint {
        display: block;
    }
}

/* ===== VENTAJAS ===== */
.ventajas {
    padding: 100px 0;
    background: #0a0a0a;
}

.ventajas-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.ventajas-content h2 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
}

.ventajas-content h2 span {
    color: #ffb400;
}

.ventajas-content>p {
    color: #a0a0a0;
    font-size: 18px;
    max-width: 480px;
    margin-bottom: 40px;
}

.ventaja-item {
    display: flex;
    gap: 18px;
    margin-bottom: 28px;
}

.ventaja-item i {
    color: #ffb400;
    font-size: 22px;
    margin-top: 3px;
}

.ventaja-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.ventaja-item p {
    color: #888;
    font-size: 15px;
}

.ventajas-image {
    background: linear-gradient(145deg, #141414, #0a0a0a);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 50px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ventajas-stats-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.stat-big {
    text-align: center;
}

.stat-big .stat-number {
    font-size: 48px;
    font-weight: 900;
    color: #ffb400;
    display: block;
}

.stat-big .stat-label {
    font-size: 16px;
    color: #888;
}

/* ===== GALERIA ===== */
.galeria {
    padding: 100px 0;
    background: #0d0d0d;
}

.galeria-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0;
}

.galeria-wrapper {
    overflow: hidden;
    width: 100%;
    border-radius: 16px;
}

.galeria-grid {
    display: flex;
    gap: 18px;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.galeria-item {
    flex: 0 0 calc((100% - 108px) / 7);
    min-width: 0;
    border-radius: 14px;
    overflow: hidden;
}

.galeria-img {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    aspect-ratio: 3 / 4;
    background: #111;
}

.galeria-img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.galeria-item:hover .galeria-img img {
    transform: scale(1.06);
}

.galeria-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(3px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.galeria-item:hover .galeria-overlay {
    opacity: 1;
}

.galeria-overlay span {
    background: #ffb400;
    color: #0a0a0a;
    padding: 9px 16px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 12px;
    white-space: nowrap;
}

.galeria-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.galeria-arrow:hover {
    background: #ffb400;
    color: #0a0a0a;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 30px rgba(255, 180, 0, 0.3);
}

.galeria-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.galeria-arrow-left {
    left: -24px;
}

.galeria-arrow-right {
    right: -24px;
}

.galeria-arrow.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

@media (max-width: 1024px) {
    .galeria-item {
        flex: 0 0 calc(50% - 9px);
        min-width: 0;
    }

    .galeria-arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .galeria-arrow-left {
        left: -12px;
    }

    .galeria-arrow-right {
        right: -12px;
    }
}

@media (max-width: 768px) {
    .galeria {
        padding: 70px 0;
    }

    .galeria-arrow {
        display: none !important;
    }

    .galeria-wrapper {
        overflow-x: auto;
        overflow-y: visible;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        padding: 10px 0 20px;
        border-radius: 0;
        width: 100%;
    }

    .galeria-wrapper::-webkit-scrollbar {
        display: none;
    }

    .galeria-grid {
        display: flex;
        gap: 14px;
        transition: none !important;
        transform: none !important;
        width: max-content;
        padding: 0 15px;
        flex-wrap: nowrap;
    }

    .galeria-item {
        flex: 0 0 70%;
        max-width: 300px;
        min-width: 250px;
        scroll-snap-align: start;
        border-radius: 14px;
        overflow: hidden;
    }

    .galeria-img {
        aspect-ratio: 3 / 4;
        border-radius: 14px;
        background: #111;
    }

    .galeria-img img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
    }

    .galeria-overlay {
        opacity: 1 !important;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent 50%);
        backdrop-filter: none;
        align-items: flex-end;
        justify-content: center;
        padding-bottom: 15px;
        border-radius: 14px;
    }

    .galeria-overlay span {
        padding: 8px 15px;
        font-size: 11px;
        background: #ffb400;
        color: #0a0a0a;
        border-radius: 999px;
        font-weight: 700;
    }

    .galeria-item:hover .galeria-img img {
        transform: none;
    }

    .galeria-item:hover .galeria-overlay {
        opacity: 1 !important;
    }
}

@media (max-width: 480px) {
    .galeria-item {
        flex: 0 0 80%;
        min-width: 200px;
        max-width: 280px;
    }

    .galeria-overlay span {
        padding: 6px 12px;
        font-size: 10px;
    }
}

/* ===== CONTACTO ===== */
.contacto {
    padding: 100px 0;
    background: #0a0a0a;
}

.contacto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contacto-info h2 {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 16px;
}

.contacto-info h2 span {
    color: #ffb400;
}

.contacto-info>p {
    color: #a0a0a0;
    font-size: 18px;
    margin-bottom: 40px;
}

.contacto-detalles {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.contacto-item {
    display: flex;
    align-items: center;
    gap: 18px;
}

.contacto-item i {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 180, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffb400;
    font-size: 18px;
}

.contacto-item div {
    display: flex;
    flex-direction: column;
}

.contacto-item span {
    font-size: 13px;
    color: #888;
}

.contacto-item strong {
    font-size: 18px;
    color: #fff;
}

.contacto-social {
    display: flex;
    gap: 12px;
}

.contacto-social a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a0a0a0;
    transition: all 0.3s ease;
    text-decoration: none;
}

.contacto-social a:hover {
    border-color: #ffb400;
    color: #ffb400;
    transform: translateY(-3px);
}

.contacto-form {
    background: #141414;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    color: #fff;
    font-size: 16px;
    font-family: Arial, Helvetica, sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(255, 180, 0, 0.4);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #666;
}

.form-group textarea {
    resize: vertical;
}

/* ===== FOOTER ===== */
.footer {
    background: #060606;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-brand .logo {
    font-size: 24px;
    margin-bottom: 12px;
}

.footer-brand p {
    color: #888;
    font-size: 15px;
    max-width: 300px;
}

.footer-links h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-links a {
    display: block;
    color: #888;
    text-decoration: none;
    font-size: 14px;
    padding: 6px 0;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffb400;
}

.footer-newsletter p {
    color: #888;
    font-size: 14px;
    margin-bottom: 16px;
}

.newsletter-form {
    display: flex;
    gap: 8px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    color: #fff;
    font-size: 14px;
}

.newsletter-form input:focus {
    outline: none;
    border-color: rgba(255, 180, 0, 0.3);
}

.newsletter-form button {
    padding: 12px 20px;
    background: #ffb400;
    border: none;
    border-radius: 10px;
    color: #0a0a0a;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #ffc533;
}

.footer-bottom {
    padding-top: 30px;
    text-align: center;
    color: #555;
    font-size: 14px;
}

/* ===== ANIMACIONES ===== */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-40px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(40px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.95);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

@media (max-width: 1024px) {
    .hero h1 {
        font-size: 48px;
    }

    .hero-grid {
        gap: 40px;
    }

    .servicios-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .precios-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .precio-card-destacado {
        transform: scale(1);
    }

    .precio-card-destacado:hover {
        transform: translateY(-8px);
    }

    .ventajas-grid {
        grid-template-columns: 1fr;
    }

    .contacto-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .botones-row .btn {
        font-size: 14px;
        padding: 14px 16px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 10, 0.98);
        padding: 20px;
        gap: 4px;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav.open {
        display: flex;
    }

    .nav a {
        padding: 12px 20px;
        width: 100%;
        border-radius: 8px;
    }

    .hero {
        padding: 100px 0 40px;
        min-height: auto;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .hero-image img {
        height: 300px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .servicios-grid {
        grid-template-columns: 1fr;
    }

    .precios-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .galeria-grid {
        grid-template-columns: 1fr;
    }

    .ventajas-content h2 {
        font-size: 32px;
    }

    .ventajas-stats-card {
        grid-template-columns: 1fr;
    }

    .contacto-info h2 {
        font-size: 32px;
    }

    .contacto-form {
        padding: 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .scroll-indicator {
        display: none;
    }

    .itv-message {
        font-size: 14px;
        padding: 14px 16px;
    }

    .botones-row {
        flex-direction: column;
        gap: 10px;
    }

    .botones-row .btn {
        font-size: 16px;
        padding: 16px 20px;
        width: 100%;
    }
}

.logo-link {
    text-decoration: none;
    color: #ffffff !important;
}

.logo-link:hover {
    color: #ffffff !important;
}

.logo span {
    color: #ffffff !important;
}

.logo-img {
    width: 55px;
    height: 55px;
    object-fit: contain;
    display: block;
}

/* ===== LIGHTBOX ===== */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.lightbox-close {
    position: fixed;
    top: 20px;
    right: 30px;
    background: none;
    border: none;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    z-index: 10001;
    transition: transform 0.3s ease;
}

.lightbox-close:hover {
    transform: rotate(90deg);
}

.lightbox-arrow {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-arrow:hover {
    background: #ffb400;
    color: #0a0a0a;
    transform: translateY(-50%) scale(1.1);
}

.lightbox-arrow-left {
    left: 20px;
}

.lightbox-arrow-right {
    right: 20px;
}

.lightbox-counter {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    font-weight: 600;
    background: rgba(0, 0, 0, 0.5);
    padding: 8px 20px;
    border-radius: 999px;
    z-index: 10001;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

@media (max-width: 768px) {
    .lightbox {
        background: #000000;
        padding: 0;
    }

    .lightbox-content {
        max-width: 100%;
        max-height: 100vh;
        padding: 0;
        margin: 0;
        width: 100%;
        height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .lightbox-content img {
        max-width: 100%;
        max-height: 100vh;
        width: 100%;
        height: 100%;
        object-fit: contain;
        border-radius: 0;
        box-shadow: none;
        display: block;
        margin: 0 auto;
    }

    .lightbox-close {
        position: fixed;
        top: 12px;
        right: 16px;
        font-size: 32px;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(10px);
        border-radius: 50%;
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        z-index: 10002;
        border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .lightbox-close:hover {
        transform: rotate(90deg);
        background: rgba(255, 255, 255, 0.1);
    }

    .lightbox-arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.06);
        top: 50%;
        transform: translateY(-50%);
    }

    .lightbox-arrow:hover {
        background: #ffb400;
        color: #0a0a0a;
        transform: translateY(-50%) scale(1.1);
    }

    .lightbox-arrow-left {
        left: 8px;
    }

    .lightbox-arrow-right {
        right: 8px;
    }

    .lightbox-counter {
        bottom: 16px;
        font-size: 12px;
        padding: 6px 16px;
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.06);
    }
}

@media (max-width: 480px) {
    .lightbox-close {
        top: 10px;
        right: 12px;
        width: 38px;
        height: 38px;
        font-size: 26px;
    }

    .lightbox-arrow {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }

    .lightbox-arrow-left {
        left: 4px;
    }

    .lightbox-arrow-right {
        right: 4px;
    }

    .lightbox-counter {
        font-size: 11px;
        padding: 4px 14px;
        bottom: 12px;
    }
}

/* ===== TEXTO EXTRA EN HERO ===== */
.hero-extra {
    font-size: 16px;
    color: #b0b0b0;
    max-width: 540px;
    margin: -6px 0 22px;
    line-height: 1.6;
}

.hero-extra i {
    color: #ffb400;
    font-size: 14px;
    margin-right: 6px;
}

.hide-on-desktop {
    display: block;
}

@media (max-width: 768px) {
    .hero-extra {
        font-size: 15px;
        margin-top: -4px;
        margin-bottom: 35px;
        line-height: 1.6;
    }
}
/* ===== ОПТИМИЗАЦИЯ ДЛЯ МОБИЛЬНЫХ (убираем тормоза) ===== */
@media (max-width: 768px) {

    /* Убираем тяжёлые размытия — главный источник лагов в WebView */
    .header,
    .image-floating-badge,
    .galeria-overlay,
    .lightbox-arrow,
    .lightbox-close,
    .lightbox-counter {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    /* Отключаем постоянные анимации */
    .scroll-indicator {
        animation: none !important;
    }

    .precios-hint i {
        animation: none !important;
    }

    /* Упрощаем тени и hover-эффекты */
    .servicio-card:hover,
    .precio-card:hover,
    .btn-primary:hover,
    .btn-secondary:hover,
    .btn-whatsapp:hover,
    .btn-telegram:hover {
        box-shadow: none !important;
        transform: none !important;
    }

    /* Галерея — меньше нагрузки */
    .galeria-grid {
        will-change: auto;
    }
}
/* ===== SEO LOCAL — MOBILE ===== */
.seo-local p {
    margin-bottom: 20px;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .seo-local {
        padding: 60px 0;
    }

    .seo-local h2 {
        font-size: 32px;
        line-height: 1.2;
        margin-bottom: 25px;
    }

    .seo-local p {
        font-size: 16px;
        line-height: 1.7;
        margin-bottom: 22px;
    }

    .seo-local p:last-child {
        margin-bottom: 0;
    }
}
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    left: 20px;
    background: #25D366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    z-index: 999;
    transition: all 0.3s ease;
    animation: shake 2s infinite;  /* ← ДОБАВЛЯЕМ АНИМАЦИЮ */
}
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10% { transform: translateX(-4px) rotate(-2deg); }
    20% { transform: translateX(4px) rotate(2deg); }
    30% { transform: translateX(-3px) rotate(-1deg); }
    40% { transform: translateX(3px) rotate(1deg); }
    50% { transform: translateX(-2px) rotate(0deg); }
    60%, 100% { transform: translateX(0); }
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 64px;
        height: 64px;
        font-size: 34px;
        bottom: 25px;
        left: 25px;
    }
}