/* Imagen de fondo: ancho completo y repetición vertical */
.fondo-cover-pagina {
    background-size: 100% auto !important;
    background-repeat: repeat-y !important;
    background-position: top center !important;
}

/* Página Test: fondo en body sin márgenes */
body.pagina-test {
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
    min-height: 100vh;
    background-size: 100% auto !important;
    background-repeat: repeat-y !important;
    background-position: top center !important;
}
body.pagina-test .container-test-full {
    max-width: none !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Contenedor principal del blog */

body {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    font-family: var(--font-sans);
}

.logo {
    width: 600px;
    margin: 10px auto;
    display: block;
    max-width: 100%;
}

.logo-guia {
    width: 400px;
    margin: 10px auto;
    display: block;
    max-width: 100%;
}

.logo-box {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 30px;
}

.logo-box img {
    display: block;
    margin: 0 auto;
    width: 400px;
    max-width: 90%;
    height: auto;
}

.ticker-container {
    width: 100%;
    overflow: hidden;
    background: transparent;
    position: relative;
    height: 30px;
    margin-bottom: 10px;
}

.ticker-content {
    display: inline-block;
    white-space: nowrap;
    animation: scroll-ticker 60s linear infinite;
    font-size: 14px;
    color: #fff;
    padding-left: 100%;
}

@keyframes scroll-ticker {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* ========== Animations (respect reduced motion) ========== */
@media (prefers-reduced-motion: no-preference) {
    @keyframes fade-in-up {
        from {
            opacity: 0;
            transform: translateY(24px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    @keyframes fade-in {
        from { opacity: 0; }
        to { opacity: 1; }
    }
    @keyframes fade-in-right {
        from {
            opacity: 0;
            transform: translateX(32px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    @keyframes fade-in-left {
        from {
            opacity: 0;
            transform: translateX(-32px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    @keyframes scale-in {
        from {
            opacity: 0;
            transform: scale(0.96);
        }
        to {
            opacity: 1;
            transform: scale(1);
        }
    }

    /* Hero: staggered entrance on load */
    .hero-anim .logo {
        animation: fade-in-up 0.7s ease-out both;
    }
    .hero-anim .claim {
        animation: fade-in-up 0.6s ease-out 0.15s both;
    }
    .hero-anim .app-icons-container {
        animation: fade-in-up 0.6s ease-out 0.3s both;
    }
    .hero-anim .right-column {
        animation: fade-in-right 0.8s ease-out 0.2s both;
    }

    /* Scroll-triggered reveal */
    .reveal {
        opacity: 0;
        transform: translateY(28px);
        transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    }
    .reveal.revealed {
        opacity: 1;
        transform: translateY(0);
    }
    .reveal-left {
        opacity: 0;
        transform: translateX(-28px);
        transition: opacity 0.5s ease-out, transform 0.5s ease-out;
    }
    .reveal-left.revealed {
        opacity: 1;
        transform: translateX(0);
    }
    .reveal-right {
        opacity: 0;
        transform: translateX(28px);
        transition: opacity 0.5s ease-out, transform 0.5s ease-out;
    }
    .reveal-right.revealed {
        opacity: 1;
        transform: translateX(0);
    }
}

html {
    scroll-behavior: smooth;
}

.btn-rojo {
    width: 200px;
    background-color: #ff3b61;
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    font-weight: 500;
    margin-top: 20px;
}

.btn-planes {
    width: 200px;
    color: #ee812b;
    padding: 10px;
    border: 2px solid #ee812b;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    font-weight: 500;
    margin-top: 20px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.btn-planes:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 59, 97, 0.3);
    background-color: rgba(255, 59, 97, 0.12);
}

.btn-registro {
    width: 160px;
    color: #ee812b;
    padding: 10px;
    border: 2px solid #ee812b;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    font-weight: 500;
    margin-top: 20px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.btn-registro:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 59, 97, 0.3);
}

.btn-rojo2 {
    width: 160px;
    background-color: #ee812b;
    color: #fff;
    padding: 10px;
    border: 2px solid #ee812b;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    font-weight: 500;
    margin-top: 20px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-rojo2:hover {
    transform: translateY(-2px);
    background-color: #f88944;
}

.modal {
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: ye;
}

.modal-contenido {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 20px;
    color: #060606;
    border-radius: 10px;
    width: 80%;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
}

.modal-cerrar {
    position: absolute;
    top: 0px;
    right: 15px;
    font-size: 40px;
    cursor: pointer;
    color: #999;
}

.legal-container {
    margin: 20px auto;
    max-width: 800px;
    width: 100%;
    padding: 20px;
    padding-bottom: 50px;
    text-align: left;
    color: #000000;
    background: transparent;
    overflow-y: auto;
    position: relative;
}

.legal-title {
    text-align: center;
    font-size: 2rem;
    margin-top: 20px;
    color: #000000;
    padding: 10px 0;
}

/* Botón de cierre */
.close-button {
    position: absolute;
    top: 0px;
    right: 20px;
    background: none;
    border: none;
    color: #000000;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Contenido de la página */
.legal-content {
    font-size: 1rem;
    line-height: 1.6;
    margin-top: 10px;
    color: #000000;
}

.epigrafe {
    font-size: 1rem;
    line-height: 1.5;
    margin-top: 20px;
    font-weight: bold;
    color: #000000;
}

.legal-content a {
    font-size: 1rem;
    text-decoration: none;
    color: #000000;
}

.bullet {
    font-size: 1rem;
    line-height: 1.6;
    margin-top: 10px;
    color: #000000;
}

/* Página contacto: fondo claro, textos negro */
.pagina-contacto .legal-container--contacto {
    background-color: #ffffff;
    color: #000;
}
.pagina-contacto .legal-container--contacto .legal-title,
.pagina-contacto .legal-container--contacto .legal-content,
.pagina-contacto .legal-container--contacto p,
.pagina-contacto .legal-container--contacto label {
    color: #000;
}
.pagina-contacto .close-button {
    color: #000;
}
.pagina-contacto .legal-container--contacto .legal-content a {
    color: #000;
}
.pagina-contacto .legal-container--contacto input,
.pagina-contacto .legal-container--contacto textarea {
    color: #000;
    background-color: #fff;
    border: 1px solid #ccc;
}
.contacto-consentimiento {
    margin: 1.5rem 0 1.25rem;
    font-size: 0.95rem;
    line-height: 1.5;
}
.contacto-consentimiento .legal-content {
    margin-bottom: 0.75rem;
}
.contacto-consentimiento a {
    color: #000;
    text-decoration: underline;
}
.contacto-consentimiento-check {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-top: 1rem;
    cursor: pointer;
    font-weight: 500;
}
.contacto-consentimiento-check input[type="checkbox"] {
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.features-section {
    margin: 10px auto;
    max-width: 100%; /* Usar el ancho máximo del contenedor */
}

.feature-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 20px 0;
    padding: 20px;
    border-radius: 10px;
    flex-wrap: wrap;
}

.feature-row-2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-radius: 10px;
    background-color: #ffffff;
    flex-wrap: wrap;
}
.feature-row-2.reverse {
    flex-direction: row-reverse;
}

.feature-row.reverse {
    flex-direction: row-reverse;
}
.intro {
    padding: 30px;
    margin: 0 auto;
    margin-bottom: 30px;
    max-width: 1000px;
}

.intro2 {
    padding: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.intro2 p {
    font-size: 18px;
    color: #333;
    position: relative;
    padding-left: 10px;
}

.intro p {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px; /* Espacio para el bullet */
}

.intro p::before {
    content: "•"; /* Bullet point */
    color: #333; /* Color del bullet */
    font-size: 22px; /* Tamaño del bullet */
    position: absolute;
    left: 0; /* Posición a la izquierda */
    top: 0;
    line-height: 22px; /* Alineación vertical */
}

.intro h2 {
    flex: 1;
    text-align: Center;
    padding: 10px;
    max-width: 100%;
    font-size: 50px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
    line-height: 65px;
}

.titulo {
    flex: 1;
    text-align: Center;
    padding: 10px;
    max-width: 100%;
    font-size: 50px;
    font-weight: 600;
    color: #333;
}

.titulo-cookies {
    flex: 1;
    max-width: 100%;
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
}


.intro h4 {
    flex: 1;
    text-align: Center;
    padding: 10px;
    max-width: 100%;
    font-size: 40px;
    font-weight: 600;
    color: #ff3b61;
    line-height: 65px;
}

.subtitulo {
    flex: 1;
    text-align: Center;
    padding: 10px;
    max-width: 100%;
    font-size: 50px;
    font-weight: 600;
    color: #333;
    line-height: 65px;
}

.feature-text {
    flex: 1;
    padding: 20px;
    max-width: 60%;
    margin-right: 30px;
}

.feature-text p {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px; /* Espacio para el bullet */
}

.feature-text h6 {
    font-size: 18px;
    color: #333;
    max-width: 700px;
}

.feature-text p::before {
    content: "•"; /* Bullet point */
    color: #333; /* Color del bullet */
    font-size: 20px; /* Tamaño del bullet */
    position: absolute;
    left: 0; /* Posición a la izquierda */
    top: 0;
    line-height: 18px; /* Alineación vertical */
}
.feature-text h2 {
    font-size: 50px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
    line-height: 65px;
}

.feature-text h3 {
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #333;
    line-height: 50px;
}

.feature-text h4 {
    font-size: 18px;
    color: #333;
    max-width: 700px;
    margin-bottom: 22px;
}

.feature-text p {
    font-size: 18px;
    color: #333;
    max-width: 700px;
}

.feature-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: 40%;
}

.feature-image2 {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: 50%;
}

.feature-image2 img {
    max-width: 450px;
    height: auto;
    border-radius: 12px;
    transition: transform 0.35s ease;
}
.feature-image2:hover img {
    transform: scale(1.03);
}

.feature-image3 {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: 40%;
}
.feature-image3 img {
    max-width: 450px;
    height: auto;
}

.feature-image img {
    max-width: 200px;
    height: auto;
    border-radius: 10px;
    border: 5px solid #060606;
}

.feature {
    font-family: var(--font-sans);
    font-size: 60px;
    font-weight: 600;
}

/* Banner captación profesionales */
.banner-profesionales {
    max-width: 960px;
    margin: 2.5rem auto 3rem;
    padding: 2.5rem 2rem;
    background: #ee812b;
    border-radius: 16px;
    text-align: center;
}
.banner-profesionales-texto {
    margin: 0 0 1.25rem;
    font-size: 1.35rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.4;
}
.banner-profesionales-btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: transparent;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: 2px solid #fff;
    border-radius: 10px;
    transition: background 0.2s, color 0.2s;
}
.banner-profesionales-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

/* Sección Conecta con tu mejor amigo */
.dog-stages-section {
    margin: 3rem auto;
    max-width: 1200px;
    padding: 0 20px;
}

.dog-stages-container {
    text-align: center;
}

.dog-stages-title {
    font-size: 50px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
    line-height: 65px;
}

.dog-stages-subtitle {
    font-size: 24px;
    color: #666;
    margin-bottom: 40px;
    font-weight: 400;
}

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

.dog-stage-item {
    overflow: hidden;
    border-radius: 12px;
    transition: transform 0.35s ease;
}

.dog-stage-item:hover {
    transform: scale(1.05);
}

.dog-stage-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    object-fit: cover;
}

.dog-stage-label {
    margin-top: 12px;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0;
}

.dog-stages-button {
    margin-top: 10px;
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.right-column {
    margin-left: 0px;
    margin-top: 50px;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.left-column {
    margin-left: 20px;
    margin-top: 0px;
}

.left-column,
.right-column {
    width: 45%;
}

.phone-simulator {
    position: relative;
    width: 600px;
    height: 500px;
    border: 7px solid #060606;
    border-radius: 20px;
    overflow: hidden;
    background-color: #ffffff;
}
/* Carrusel sin marco (solo imágenes) */
.phone-simulator.carousel-sin-marco {
    border: none;
    border-radius: 16px;
    background: transparent;
    overflow: hidden;
}
.phone-simulator.carousel-sin-marco .carousel {
    border-radius: 16px;
    overflow: hidden;
}
.phone-simulator.carousel-sin-marco .carousel img {
    border-radius: 16px;
}

.carousel img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity 1s;
}

.carousel img.active {
    opacity: 1;
}

/* Noticias del blog */
.blog-news-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    color: #333;
    padding: 20px 20px;
    margin-bottom: 20px;
    margin-top: 20px;
    border-radius: 0px;
}

.blog-news-row.reverse {
    flex-direction: row-reverse;
}

.blog-new-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Recorta la imagen para que se ajuste bien */
    object-position: center; /* Centra la imagen */
}

.blog-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

.blog-image:hover {
    transform: scale(1.05);
}

.blog-news-content {
    display: flex;
    flex-direction: column; /* Apila el ícono sobre el título */
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background-color: #ffffff;
    color: #333;
    border-radius: 0px;
}

.blog-news-title {
    font-family: var(--font-sans);
    font-size: 2rem;
    font-weight: 400;
    text-align: center;
    color: #333;
}

.news-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* Enlaces a las tiendas de aplicaciones */
.blog-app-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    margin-left: 50px;
    margin-top: 30px;
}

.blog-app-links p {
    width: 100%; /* Hace que el texto ocupe todo el ancho disponible */
    text-align: left; /* Centra el texto sobre los logos */
    font-size: 16px;
    font-weight: 400;
    margin-left: 100px;
    margin-bottom: 10px; /* Espacio entre el texto y los logos */
    color: #333;
}

.blog-app-links-blog {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-left: 0px;
    margin-top: 30px;
}

.blog-app-links-blog p {
    width: 100%; /* Hace que el texto ocupe todo el ancho disponible */
    text-align: center; /* Centra el texto sobre los logos */
    font-size: 16px;
    font-weight: 400;
    margin-left: 0px;
    margin-bottom: 10px; /* Espacio entre el texto y los logos */
    color: #333;
}

.blog-app-icon {
    height: 48px;
}

.blog-app-icons {
    display: flex; /* Coloca los logos en una fila */
    gap: 15px; /* Espacio entre los logos */
}

.blog-logo-img {
    height: 55px;
    width: auto;
}

.blog-news-icon {
    font-size: 1.5rem;
    color: #07aeaf;
    margin-bottom: 1rem;
    text-align: center;
}

.blog-footer {
    color: #333;
    margin-top: 2rem;
    text-align: center;
}

.blog-footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.blog-footer-link {
    color: #ee812b;
    text-decoration: none;
    font-size: 0.8rem;
}

.blog-footer-link:hover {
    text-decoration: underline;
}

/* Estilos home */
.home-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 1rem 0rem;
}

.home-header-links {
    display: flex;
    gap: 1.5rem;
}

.home-link {
    font-size: 0.9rem;
    color: #333;
    text-decoration: none;
}

.home-link:hover,
.home-link.active {
    color: #07aeaf;
}

.app-icons-container {
    display: flex; /* Coloca los iconos en fila */
    gap: 1rem; /* Espacio entre los iconos */
    justify-content: left;
    align-items: center; /* Alinea verticalmente los iconos */
    margin-top: 40px;
}

.blog-app-icon {
    height: 48px; /* Ajuste del tamaño de los iconos */
    width: auto;
}

.claim {
    font-size: 1.8rem;
    margin-top: 10px;
    margin-left: 24px;
    font-family: var(--font-sans);
    font-weight: 400;
    line-height: 1.4;
    color: #333;
}

.claim-socios {
    text-align: center;
    color: #FF3B61;
    font-style: italic;
    margin-top: -10px;
    margin-bottom: 20px;
}

.noticia-title {
    font-family: var(--font-sans);
    font-size: 2.2rem;
    font-weight: 400;
    text-align: center;
    color: #333;
}

.noticia-entradilla {
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: #333333;
    line-height: 1.4;
}

.noticia-entradilla-blanco {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: #333;
    line-height: 1.4;
}

.tabla-planes-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
    color: #333;
    font-family: var(--font-sans);
}

.tabla-planes-wrapper {
    overflow-x: auto;
}

.tabla-planes {
    width: 100%;
    border-collapse: collapse;
    background-color: transparent;
}

.tabla-planes th,
.tabla-planes td {
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.tabla-planes thead th {
    background-color: rgba(255, 255, 255, 0.1);
    font-weight: bold;
}

.tabla-planes tbody tr {
    background-color: transparent;
}

.fila-precios {
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
}

.celda-precio-titulo {
    padding: 1rem;
    text-align: center;
    font-weight: bold;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.celda-precio {
    padding: 1rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 1.1rem;
    font-weight: 600;
}

.tabla-planes .fila-botones td {
    border: none;
    padding-top: 2rem;
}

.boton {
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 5px;
    color: white;
    cursor: pointer;
    font-weight: bold;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.boton:hover {
    opacity: 0.95;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}

.boton.gratis {
    background-color: #22c55e;
}

.boton.basico {
    background-color: #3b82f6;
}

.boton.pro {
    background-color: #a855f7;
}

.boton.enviar {
    background-color: #ee812b;
}

.tarjetas-planes-movil {
    display: none;
}

/* Versión móvil */
@media (max-width: 780px) {
    .tabla-planes-wrapper {
        display: none;
    }

    .phone-simulator {
        position: relative;
        width: 350px;
        height: 300px;
        border: 3px solid #060606;
        border-radius: 20px;
        overflow: hidden;
        background-color: #ffffff;
    }
    .phone-simulator.carousel-sin-marco {
        border: none;
        border-radius: 12px;
        background: transparent;
    }
    .phone-simulator.carousel-sin-marco .carousel,
    .phone-simulator.carousel-sin-marco .carousel img {
        border-radius: 12px;
    }

    .modal-contenido {
        width: 95%;
    }

    .feature-text h6 {
        text-align: left;
    }

    .btn-rojo {
        margin-left: auto;
        margin-right: auto;
        margin-top: 30px;
    }

    .container {
        margin: 0px auto;
        max-width: 800px;
        padding: 0px;
        background-color: #ffffff;
        overflow-y: auto;
        position: relative;
    }

    .app-icons-container {
        display: flex;
        gap: 1rem;
        justify-content: center;
        align-items: center;
        margin-left: 0;
        margin-top: 10px;
        margin-bottom: 30px;
    }

    .app-icons-container img {
        width: auto;
        height: auto;
        max-width: 130px;
        max-height: 60px;
        object-fit: contain;
    }

    .claim {
        font-size: 1.5rem;
        margin-top: 20px;
        margin-bottom: 30px;
        line-height: 1.3;
        text-align: center;
        margin-left: 0px;
        padding: 0px;
    }

    .blog-new-image {
        height: 250px;
        margin-top: 20px;
    }

    body {
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100vw; /* Asegura que el ancho máximo no se desborde */
        overflow-x: hidden; /* Evita el desplazamiento horizontal */
    }

    .blog-news-row {
        flex-direction: column; /* Hace que las columnas se apilen */
        margin-top: 30px;
        margin-bottom: 0px;
        border-radius: 0px;
        padding: 0px;
    }

    .feature-row {
        flex-direction: column; /* Cambia a columnas apiladas en móvil */
        justify-content: center;
        align-items: center;
        text-align: center; /* Alinear el contenido al centro */
        margin: 0px 0;
        padding: 0px;
        border-radius: 0px;
        margin-bottom: 50px;
    }

    .features-section {
        margin: 10px auto;
        max-width: 100%; /* Usar el ancho máximo del contenedor */
    }

    .left-column {
        margin-left: 0px;
        width: 80%;
    }

    .feature-text {
        padding: 30px;
        margin: 0 auto;
        max-width: 1000px;
    }

    .feature-image {
        max-width: 100%;
    }

    .feature-image2 img {
        max-width: 320px;
        height: auto;
        margin-top: 30px;
    }

    .feature-image3 img {
        max-width: 320px;
        height: auto;
    }

    .banner-profesionales {
        margin: 2rem 1rem 2.5rem;
        padding: 2rem 1.25rem;
    }
    .banner-profesionales-texto {
        font-size: 1.15rem;
    }

    .dog-stages-section {
        margin: 2rem 1rem;
        padding: 0 10px;
    }

    .dog-stages-title {
        font-size: 32px;
        line-height: 42px;
        margin-bottom: 10px;
    }

    .dog-stages-subtitle {
        font-size: 18px;
        margin-bottom: 30px;
    }

    .dog-stages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .dog-stages-button {
        margin-top: 30px;
    }

    .feature-text h3 {
        font-size: 40px;
        line-height: 50px;
    }

    .feature-text h4 {
        color: #333;
        margin-bottom: 22px;
        text-align: left;
        margin-left: 30px;
    }

    .intro {
        margin-bottom: 0px;
    }

    .intro h3 {
        font-size: 40px;
        line-height: 50px;
    }

    .subtitulo {
        font-size: 40px;
        line-height: 50px;
    }

    .blog-footer-links {
        margin-bottom: 40px;
    }

    .intro p {
        margin-bottom: 10px;
        position: relative;
        padding-left: 30px;
    }

    .intro p::before {
        content: "•";
        color: #333;
        font-size: 22px;
        left: 10;
        top: 0;
        line-height: 22px; /* Alineación vertical */
    }

    .feature-text p {
        margin-bottom: 10px;
        position: relative;
        padding-left: 30px;
        text-align: left;
    }

    .feature-text p::before {
        content: "•";
        color: #333;
        font-size: 22px;
        left: 10;
        top: 0;
        line-height: 22px;
    }

    .tabla-planes-container {
        max-width: 1000px;
        margin: 0 auto;
        padding: 2rem;
        color: #333;
        font-family: var(--font-sans);
    }

    .titulo-planes {
        text-align: center;
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .tabla-planes-wrapper {
        overflow-x: auto;
    }

    .tabla-planes {
        width: 100%;
        border-collapse: collapse;
        background-color: transparent;
    }

    .tabla-planes th,
    .tabla-planes td {
        padding: 1rem;
        border: 1px solid rgba(255, 255, 255, 0.2);
        text-align: center;
    }

    .tabla-planes thead th {
        background-color: rgba(255, 255, 255, 0.1);
        font-weight: bold;
    }

    .tabla-planes tbody tr {
        background-color: transparent;
    }

    .tabla-planes .fila-botones td {
        border: none;
        padding-top: 2rem;
    }

    .boton {
        padding: 0.6rem 1.2rem;
        border: none;
        border-radius: 5px;
        color: white;
        cursor: pointer;
        font-weight: bold;
    }

    .boton.gratis {
        background-color: #22c55e;
    }

    .boton.basico {
        background-color: #3b82f6;
    }

    .boton.pro {
        background-color: #a855f7;
    }

    .boton:hover {
        opacity: 0.9;
    }

    .tarjetas-planes-movil {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .tarjeta-plan {
        background-color: rgba(255, 255, 255, 0.05);
        padding: 1.5rem;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        color: white;
    }

    .tarjeta-plan h4 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        text-align: center;
    }

    .tarjeta-plan h5 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
        text-align: center;
    }

    .tarjeta-plan ul {
        list-style: none;
        padding: 0;
        margin-bottom: 1rem;
    }

    .tarjeta-plan ul li {
        padding: 0.4rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .tarjeta-plan .boton {
        display: block;
        width: 100%;
        text-align: center;
        margin-top: 1rem;
    }
    .feature-text h2 {
        font-size: 32px;
        font-weight: 600;
        margin-bottom: 15px;
        color: #333;
        line-height: 42px;
    }
}

/* Scroll to top button */
.scroll-to-top {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    z-index: 800;
    width: 2.75rem;
    height: 2.75rem;
    border: none;
    border-radius: 50%;
    background: #ee812b;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 4px 14px rgba(255, 59, 97, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease, box-shadow 0.2s ease;
}
.scroll-to-top.scroll-to-top-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.scroll-to-top:hover {
    box-shadow: 0 6px 18px rgba(255, 59, 97, 0.5);
    transform: translateY(-2px);
}
.scroll-to-top:focus {
    outline: 2px solid #fff;
    outline-offset: 2px;
}
@media (max-width: 780px) {
    .scroll-to-top {
        right: 1rem;
        bottom: 1rem;
        width: 2.5rem;
        height: 2.5rem;
        font-size: 0.9rem;
    }
}

/* Cookie banner */
.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.25rem;
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 -6px 20px rgba(0,0,0,0.35);
}
/* cookie-text unified */
.cookie-text { flex: 1 1 auto; line-height: 1.6; font-size: .98rem; max-width: none; overflow-wrap: anywhere; white-space: normal; }
.cookie-link { color: #fff; text-decoration: underline; }
.cookie-actions { flex: 0 0 auto; display: flex; gap: 1rem; align-items: center; }
.cookie-button { border: none; border-radius: 999px; padding: 0.7rem 1.4rem; cursor: pointer; font-weight: 700; letter-spacing: .2px; }
.cookie-button.primary { background: #ee812b; color: #fff; box-shadow: 0 4px 14px rgba(255,59,97,.25); }
.cookie-button.primary:hover { filter: brightness(1.05); }
.cookie-button.secondary { background: #5a5a5a; color: #fff; }
.cookie-button.secondary:hover { filter: brightness(1.1); }
 
/* Cookie modal */
.cookie-modal { position: fixed; inset: 0; background: rgba(0,0,0,0.6); display: flex; justify-content: center; align-items: center; z-index: 10000; }
.cookie-modal-content { background: #2c2c2c; color: #fff; width: 90%; max-width: 640px; border-radius: 8px; padding: 1rem 1.5rem; }
.cookie-modal-header { display: flex; justify-content: space-between; align-items: center; }
.cookie-close { background: none; border: none; color: #fff; font-size: 1.5rem; cursor: pointer; }
.cookie-modal-body { margin-top: 1rem; display: grid; gap: 0.75rem; }
.cookie-switch { display: flex; align-items: center; gap: 0.75rem; }
.cookie-switch .slider { width: 42px; height: 24px; background: #555; border-radius: 999px; position: relative; display: inline-block; }
.cookie-switch input { display: none; }
.cookie-switch .slider::after { content: ''; width: 18px; height: 18px; background: #fff; border-radius: 50%; position: absolute; top: 3px; left: 3px; transition: all 0.2s; }
.cookie-switch input:checked + .slider { background: #ee812b; }
.cookie-switch input:checked + .slider::after { left: 21px; }
.cookie-modal-actions { margin-top: 1rem; display: flex; justify-content: flex-end; gap: 0.75rem; }

/* Override layout to two columns */
.cookie-banner { display: grid; grid-template-columns: minmax(0,1fr) max-content; align-items: center; column-gap: 1rem; }
/* removed duplicate cookie-text; definition unified above */
.cookie-actions { justify-self: end; }

@media (max-width: 768px) {
  .cookie-banner { grid-template-columns: 1fr; }
  .cookie-actions { justify-self: stretch; justify-content: flex-end; }
}
