body {
    background-size: cover;
    position: relative;
    color: #333;
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    min-height: 100vh;
}

body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    z-index: -1;
}

header {
    background: linear-gradient(to right, #29abe3, #00ffc9);
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

header:hover {
    background-color: #1f8ac0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

#logo {
    width: 240px;
    height: auto;
    max-width: 100%;
    max-height: 80px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    backface-visibility: hidden;
    will-change: transform;
}

main {
    display: block;
}

/* Hero comercial */
.hero-conversion {
    max-width: 1100px;
    margin: 22px auto 18px;
    padding: 0 20px;
    box-sizing: border-box;
}

.hero-content {
    background:
        radial-gradient(circle at top left, rgba(0, 255, 201, 0.18), transparent 35%),
        linear-gradient(135deg, rgba(41, 171, 227, 0.98), rgba(0, 255, 201, 0.92));
    color: #fff;
    text-align: center;
    border-radius: 28px;
    padding: 34px 26px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
    overflow: hidden;
    position: relative;
}

.hero-content::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    right: -90px;
    bottom: -120px;
    background: rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    pointer-events: none;
}

.hero-kicker,
.section-kicker {
    margin: 0 0 10px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-content h1 {
    max-width: 820px;
    margin: 0 auto 16px;
    font-size: clamp(30px, 4.5vw, 46px);
    line-height: 1.08;
    font-weight: 900;
}

.hero-description {
    max-width: 760px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 22px;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 800;
    text-decoration: none;
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        background 0.22s ease;
}

.btn-primary {
    background: #ffffff;
    color: #1688bd;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.42);
}

.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-2px);
    text-decoration: none;
}

.btn-primary:hover {
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.24);
}

.hero-trust {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.hero-trust span {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.17);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}

/* Carrusel */
.carousel {
    margin: 18px auto 30px;
    width: 400px;
    max-width: 90%;
    height: 500px;
    background-color: #26a1da;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease-in-out;
}

.carousel-images {
    width: 100%;
    height: 100%;
}

.carousel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel img:nth-child(1) {
    opacity: 1;
}

@media (hover: hover) and (pointer: fine) {
    #logo:hover {
        transform: scale(1.1) rotate(5deg) translateZ(0);
        outline: 1px solid transparent;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.7);
    }

    .carousel:hover {
        transform: scale(1.05) rotate(-2deg);
    }
}

@media (hover: none), (pointer: coarse) {
    #logo:hover,
    #logo:active {
        transform: none !important;
    }

    .carousel:hover,
    .carousel:active {
        transform: none !important;
    }
}

.carousel-next,
.carousel-prev {
    position: absolute;
    top: 50%;
    background: rgba(0, 0, 0, 0.3);
    color: white;
    border: none;
    cursor: pointer;
    padding: 15px;
    border-radius: 50%;
    z-index: 100;
    outline: none;
    font-size: 10px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
    transition: background 0.3s ease;
}

.carousel-next {
    right: 10px;
}

.carousel-prev {
    left: 10px;
}

.carousel-next:hover,
.carousel-prev:hover {
    background: rgba(0, 0, 0, 0.5);
}

.carousel-next:focus,
.carousel-prev:focus {
    outline: 2px solid #fff;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.7);
}

.carousel-indicators {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    align-items: center;
    justify-content: center;
    z-index: 120;
}

.carousel-indicators button {
    position: relative;
    width: 24px;
    height: 24px;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
}

.carousel-indicators button::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.45);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
    transition:
        background 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.carousel-indicators button.active::before {
    background: #fff;
    transform: translate(-50%, -50%) scale(1.35);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

.carousel-indicators button:hover::before {
    background: rgba(255, 255, 255, 0.8);
}

/* Servicios */
.services-section {
    max-width: 1100px;
    margin: 34px auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.section-heading {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 24px;
}

.section-heading .section-kicker {
    color: #1688bd;
}

.section-heading h2 {
    margin: 0 0 10px;
    color: #222;
    font-size: clamp(26px, 4vw, 38px);
    line-height: 1.15;
}

.section-heading p {
    margin: 0;
    color: #555;
    font-size: 17px;
    line-height: 1.55;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.service-card {
    background: #fff;
    padding: 22px;
    border-radius: 20px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(41, 171, 227, 0.12);
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        border-color 0.22s ease;
}

.service-card h3 {
    margin: 0 0 10px;
    color: #1688bd;
    font-size: 20px;
}

.service-card p {
    margin: 0;
    color: #555;
    line-height: 1.55;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.13);
    border-color: rgba(41, 171, 227, 0.32);
}

/* Reseñas */
.reviews-section {
    max-width: 1100px;
    margin: 34px auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.reviews-heading {
    margin-bottom: 12px;
}

.reviews-heading .section-kicker {
    color: #1688bd;
}

.google-reviews {
    max-width: 900px;
    min-height: 220px;
    margin: 8px auto 20px;
    padding: 10px;
    box-sizing: border-box;
}

/* Banner de conversión */
.conversion-banner {
    max-width: 1100px;
    margin: 34px auto 24px;
    padding: 26px;
    box-sizing: border-box;
    background: #fff;
    border-radius: 24px;
    border: 1px solid rgba(41, 171, 227, 0.16);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.conversion-banner .section-kicker {
    color: #1688bd;
}

.conversion-banner h2 {
    margin: 0 0 8px;
    color: #222;
    font-size: clamp(24px, 3.5vw, 34px);
}

.conversion-banner p {
    margin: 0;
    color: #555;
    font-size: 16px;
    line-height: 1.5;
}

.conversion-banner .btn-primary {
    background: linear-gradient(135deg, #29abe3, #00ffc9);
    color: #fff;
    flex-shrink: 0;
}

/* Contacto */
.contact-info {
    max-width: 1100px;
    background: linear-gradient(to right, #00ffc9, #29abe3);
    padding: 34px 22px;
    justify-content: center;
    align-items: center;
    border-radius: 28px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    margin: 34px auto 20px;
    text-align: center;
    overflow-x: hidden;
    box-sizing: border-box;
}

.contact-info:hover {
    background-color: #1f8ac0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.contact-info h2 {
    margin-top: 0;
    margin-bottom: 18px;
    font-size: 30px;
}

.contact-info > p {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin: 14px 0;
}

.contact-info a {
    color: inherit;
    text-decoration: none;
    position: relative;
}

.contact-info a:hover {
    text-decoration: underline;
}

.contact-info button {
    margin-left: 0;
    background-color: #29abe3;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    cursor: pointer;
    color: white;
    font-weight: bold;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
    transition: box-shadow 0.3s ease-in-out, transform 0.3s ease-in-out;
    text-align: center;
}

.contact-info button:hover {
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.6);
    transform: scale(1.05);
}

.contact-info button:active {
    transform: scale(0.95);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
}

.contact-info h3 {
    margin-top: 22px;
    margin-bottom: 18px;
    font-size: 22px;
}

/* Formulario */
form {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    max-width: 600px;
    width: min(92%, 560px);
    padding: 28px;
    background-color: #fff;
    border-radius: 10px;
    box-sizing: border-box;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    font-family: 'Arial', sans-serif;
    margin: 0 auto;
    transition: box-shadow 0.3s ease-in-out;
}

form:hover {
    transform: none;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

form h3 {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

form label {
    display: block;
    width: 100%;
    max-width: 500px;
    margin: 0 auto 8px;
    font-weight: bold;
    color: #333;
    text-align: left;
}

form input[type="text"],
form input[type="email"],
form input[type="tel"],
form textarea {
    width: 100%;
    max-width: 500px;
    padding: 10px;
    margin: 0 auto 20px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    background-color: #f1f1f1;
    transition: border-color 0.3s ease, background-color 0.3s ease;
    box-sizing: border-box;
}

form input[type="text"]:focus,
form input[type="email"]:focus,
form input[type="tel"]:focus,
form textarea:focus {
    border-color: #3498db;
    background-color: #eaf4ff;
    outline: none;
}

form textarea {
    resize: vertical;
    height: 150px;
}

.terms {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    max-width: 500px;
    margin: 20px auto 0;
    font-size: 14px;
    color: #333;
    width: 100%;
}

.terms input[type="checkbox"] {
    flex-shrink: 0;
    margin: 2px 0 0;
    accent-color: #29abe3;
    width: 18px;
    height: 18px;
    border: 2px solid #ccc;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #fff;
}

.terms input[type="checkbox"]:checked {
    background-color: #29abe3;
    border-color: #29abe3;
}

.terms label {
    color: #333;
    font-size: 14px;
    line-height: 1.45;
    display: inline-block;
    vertical-align: middle;
    margin: 0;
    text-align: left;
}

.terms a {
    color: #29abe3;
    text-decoration: none;
    transition: color 0.3s ease;
}

.terms a:hover {
    text-decoration: underline;
    color: #3498db;
}

form button[type="submit"] {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 24px auto 10px;
    width: auto;
    max-width: none;
    min-width: 120px;
    min-height: 48px;
    font-size: 16px;
    padding: 0 26px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, #29abe3, #00ffc9);
    color: #fff;
    font-weight: 800;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
    cursor: pointer;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

form button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
}

form button[type="submit"]:disabled {
    cursor: not-allowed;
    opacity: 0.75;
}

form a {
    color: #3498db;
    text-decoration: none;
}

form a:hover {
    text-decoration: underline;
}

/* Redes */
.social-links {
    margin-top: 12px;
}

.social-links a {
    margin-right: 10px;
    color: #fff;
    transition: transform 0.3s ease-in-out;
}

.social-links a:last-child {
    margin-right: 0;
}

.social-links a:hover {
    transform: scale(1.1);
}

.social-links i {
    font-size: 30px;
    transition: color 0.3s ease;
}

.social-links a:hover i,
.social-links a:focus i {
    color: #000;
}

/* Footer */
footer {
    margin-top: 20px;
    padding: 20px;
    background-color: #29abe3;
    color: #fff;
    text-align: center;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

footer:hover {
    background-color: #1f8ac0;
    color: #fff;
}

footer p {
    margin: 0;
}

/* Burbuja de audio */
.audio-bubble {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #29abe3, #00ffc9);
    border-radius: 50%;
    position: fixed;
    top: 50%;
    left: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
    z-index: 1000;
    transform: translateY(-50%);
}

.audio-bubble::before {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background: rgba(41, 171, 227, 0.18);
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.25s ease, transform 0.25s ease;
    pointer-events: none;
}

.audio-bubble i {
    font-size: 24px;
    color: #fff;
    transition: opacity 0.2s ease, transform 0.2s ease;
    position: relative;
    z-index: 2;
}

.audio-bubble .expanded-content {
    position: absolute;
    left: 68px;
    top: 50%;
    width: 300px;
    max-width: calc(100vw - 110px);
    padding: 20px;
    background: linear-gradient(135deg, rgba(41, 171, 227, 0.98), rgba(0, 255, 201, 0.98));
    border-radius: 22px;
    box-sizing: border-box;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.32);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-50%) translateX(-14px) scale(0.96);
    transform-origin: left center;
    transition:
        opacity 0.22s ease,
        transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
        visibility 0s linear 0.32s;
}

.audio-bubble.expanded .expanded-content {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(-50%) translateX(0) scale(1);
    transition:
        opacity 0.22s ease,
        transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
        visibility 0s;
}

.audio-bubble.expanded i {
    opacity: 0;
    transform: scale(0.75);
}

.audio-bubble .expanded-content h2 {
    color: #fff;
    font-size: 18px;
    line-height: 1.25;
    margin: 0 24px 14px 0;
}

.audio-bubble .expanded-content audio {
    width: 100%;
    display: block;
}

.audio-bubble .close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
    z-index: 3;
}

.audio-bubble .close-button:hover {
    background: rgba(255, 255, 255, 0.32);
    transform: scale(1.06);
}

.audio-bubble:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 4px;
}

@media (hover: hover) and (pointer: fine) {
    .audio-bubble:hover {
        transform: translateY(-50%) scale(1.04);
        box-shadow: 0 14px 30px rgba(0, 0, 0, 0.34);
    }

    .audio-bubble:hover::before {
        opacity: 1;
        transform: scale(1);
    }
}

@media (hover: none), (pointer: coarse) {
    .audio-bubble:hover,
    .audio-bubble:active {
        transform: translateY(-50%) !important;
    }
}

/* WhatsApp flotante */
.whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 1200;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 999px;
    background: #25d366;
    color: #fff;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        background 0.22s ease;
}

.whatsapp-float:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.34);
    text-decoration: none;
}

/* Toast */
.toast {
    position: fixed;
    top: 50%;
    right: -300px;
    transform: translateY(-50%);
    background-color: #29abe3;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.5s ease-in-out, right 0.5s ease-in-out;
    white-space: nowrap;
}

.toast.show {
    right: 0;
    opacity: 1;
}

.toast.hide {
    right: -300px;
    opacity: 0;
}

/* Accesibilidad */
button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px;
}

/* Responsive tablet */
@media (max-width: 850px) {
    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .conversion-banner {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* Responsive mobile */
@media (max-width: 600px) {
    .hero-conversion {
        margin-top: 16px;
        margin-bottom: 14px;
        padding: 0 14px;
    }

    .hero-content {
        padding: 28px 16px;
        border-radius: 22px;
    }

    .hero-content h1 {
        font-size: clamp(28px, 9vw, 38px);
    }

    .hero-description {
        font-size: 15.5px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        box-sizing: border-box;
    }

    .hero-trust {
        align-items: center;
        flex-direction: column;
    }

    .hero-trust span {
        width: 100%;
        justify-content: center;
        box-sizing: border-box;
    }

    .carousel {
        margin-top: 14px;
    }

    .services-section {
        padding: 0 14px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 20px;
    }

    .reviews-section {
        padding: 0 14px;
        margin: 28px auto;
    }

    .google-reviews {
        max-width: 100%;
        min-height: 180px;
        padding: 10px;
    }

    .conversion-banner {
        margin-left: 14px;
        margin-right: 14px;
        padding: 22px;
    }

    .contact-info {
        margin: 28px 14px 18px;
        padding: 28px 16px;
        border-radius: 24px;
    }

    .contact-info > p {
        flex-direction: column;
        gap: 8px;
    }

    .contact-info a {
        word-break: break-word;
    }

    .contact-info button {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        min-height: 40px;
    }

    form {
        width: 100%;
        padding: 22px 16px;
    }

    form label {
        max-width: 100%;
    }

    form input[type="text"],
    form input[type="email"],
    form input[type="tel"],
    form textarea {
        max-width: 100%;
        font-size: 12px;
        padding: 8px;
    }

    .terms {
        max-width: 100%;
    }

    form button[type="submit"] {
        width: 100%;
    }

    .audio-bubble {
        left: 16px;
        width: 52px;
        height: 52px;
    }

    .audio-bubble .expanded-content {
        left: 62px;
        width: calc(100vw - 90px);
        max-width: none;
        padding: 18px;
    }

    .audio-bubble .expanded-content h2 {
        font-size: 16px;
    }

    .whatsapp-float {
        right: 14px;
        bottom: 14px;
        min-height: 46px;
        padding: 0 16px;
        font-size: 14px;
    }
}

/* Reducir movimiento */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
    }

    .btn-primary,
    .btn-secondary,
    .service-card,
    .whatsapp-float,
    .audio-bubble,
    .audio-bubble::before,
    .audio-bubble i,
    .audio-bubble .expanded-content,
    .audio-bubble .close-button {
        transition: none !important;
        animation: none !important;
    }
}

/* V6.1.1 - Ajustes finales mobile */

@media (max-width: 600px) {
    body {
        padding-bottom: calc(82px + env(safe-area-inset-bottom));
    }

    header {
        padding: 14px 16px;
    }

    #logo {
        width: 210px;
        max-height: 70px;
    }

    .hero-conversion {
        margin: 16px auto 14px;
        padding: 0 12px;
    }

    .hero-content {
        padding: 26px 16px 28px;
        border-radius: 22px;
    }

    .hero-content h1 {
        font-size: clamp(26px, 8vw, 34px);
        line-height: 1.12;
        margin-bottom: 14px;
    }

    .hero-description {
        font-size: 15.5px;
        line-height: 1.55;
    }

    .hero-actions {
        margin-top: 20px;
        gap: 12px;
    }

    .hero-trust {
        display: none;
    }

    .carousel {
        width: calc(100% - 36px);
        max-width: 620px;
        height: auto;
        aspect-ratio: 4 / 5;
        margin: 22px auto 30px;
    }

    .services-section {
        margin: 30px auto;
    }

    .section-heading h2 {
        font-size: clamp(28px, 8vw, 36px);
    }

    .section-heading p {
        font-size: 17px;
        line-height: 1.55;
    }

    .service-card {
        padding: 22px;
        border-radius: 22px;
    }

    .service-card h3 {
        font-size: 21px;
    }

    .service-card p {
        font-size: 17px;
        line-height: 1.55;
    }

    .reviews-section {
        margin: 30px auto 26px;
    }

    .reviews-heading {
        margin-bottom: 10px;
    }

    .google-reviews {
        margin-bottom: 18px;
    }

    .conversion-banner {
        margin: 26px 14px;
        padding: 22px 18px;
        border-radius: 22px;
    }

    .conversion-banner h2 {
        font-size: clamp(28px, 8vw, 34px);
        line-height: 1.15;
    }

    .conversion-banner p {
        font-size: 17px;
        line-height: 1.55;
    }

    .contact-info {
        margin: 28px 14px 20px;
        padding: 30px 16px 96px;
        border-radius: 24px;
    }

    .contact-info h2 {
        font-size: 34px;
        margin-bottom: 22px;
    }

    .contact-info > p {
        font-size: 19px;
        line-height: 1.45;
        gap: 10px;
        margin: 18px 0;
    }

    .contact-info button {
        display: inline-flex !important;
        justify-content: center;
        align-items: center;
        min-height: 44px;
        padding: 0 22px;
        margin-top: 4px;
    }

    .social-links {
        margin-top: 20px;
        margin-bottom: 22px;
    }

    .social-links i {
        font-size: 34px;
    }

    .contact-info h3 {
        font-size: 27px;
        line-height: 1.2;
        margin-top: 24px;
        margin-bottom: 22px;
    }

    form {
        width: 100%;
        padding: 22px 16px;
        border-radius: 16px;
    }

    form label {
        font-size: 17px;
        margin-bottom: 8px;
    }

    form input[type="text"],
    form input[type="email"],
    form input[type="tel"],
    form textarea {
        min-height: 48px;
        font-size: 16px;
        padding: 10px;
        margin-bottom: 24px;
    }

    form textarea {
        min-height: 190px;
    }

    .terms {
        gap: 14px;
        margin-top: 18px;
    }

    .terms label {
        font-size: 15.5px;
        line-height: 1.45;
    }

    form button[type="submit"] {
        width: 100%;
        min-height: 54px;
        font-size: 17px;
        margin-top: 24px;
    }

    .audio-bubble {
        top: auto;
        left: 18px;
        bottom: calc(18px + env(safe-area-inset-bottom));
        width: 52px;
        height: 52px;
        transform: none;
        z-index: 1250;
    }

    .audio-bubble:hover,
    .audio-bubble:active {
        transform: none !important;
    }

    .audio-bubble .expanded-content {
        left: 0;
        top: auto;
        bottom: 64px;
        width: calc(100vw - 36px);
        max-width: 360px;
        padding: 18px;
        transform: translateY(10px) scale(0.98);
        transform-origin: left bottom;
    }

    .audio-bubble.expanded .expanded-content {
        transform: translateY(0) scale(1);
    }

    .whatsapp-float {
        right: 18px;
        bottom: calc(18px + env(safe-area-inset-bottom));
        min-height: 48px;
        padding: 0 16px;
        font-size: 14px;
        z-index: 1240;
    }

    footer {
        margin-top: 20px;
        padding: 20px 20px calc(88px + env(safe-area-inset-bottom));
    }
}

/* V6.1.2 - Corrección mobile: consulta rápida y footer */

@media (max-width: 600px) {
    .conversion-banner {
        text-align: center;
        align-items: center;
        justify-content: center;
        margin: 26px 14px 24px;
        padding: 24px 18px;
    }

    .conversion-banner div {
        width: 100%;
    }

    .conversion-banner .section-kicker {
        text-align: center;
    }

    .conversion-banner h2 {
        text-align: center;
        font-size: clamp(28px, 8vw, 34px);
        line-height: 1.15;
    }

    .conversion-banner p {
        text-align: center;
        font-size: 17px;
        line-height: 1.5;
    }

    .conversion-banner .btn-primary {
        width: 100%;
        max-width: 100%;
        margin-top: 4px;
    }

    footer {
        margin-top: 20px;
        padding: 18px 18px;
        min-height: auto;
        border-radius: 18px 18px 0 0;
    }

    footer p {
        max-width: 280px;
        margin: 0 auto;
        font-size: 14px;
        line-height: 1.4;
        text-align: center;
    }

    body {
        padding-bottom: calc(86px + env(safe-area-inset-bottom));
    }

    .audio-bubble,
    .whatsapp-float {
        bottom: calc(18px + env(safe-area-inset-bottom));
    }
}

/* V6.1.3 - Footer mobile termina correctamente */

@media (max-width: 600px) {
    body {
        padding-bottom: 0 !important;
    }

    footer {
        margin: 20px 0 0;
        padding: 18px 18px calc(82px + env(safe-area-inset-bottom));
        min-height: 0 !important;
        border-radius: 18px 18px 0 0;
        box-sizing: border-box;
    }

    footer p {
        max-width: 300px;
        margin: 0 auto;
        font-size: 14px;
        line-height: 1.4;
        text-align: center;
    }

    .audio-bubble,
    .whatsapp-float {
        bottom: calc(18px + env(safe-area-inset-bottom));
    }
}