:root {
    --color-primario: #93AEC9;
    --color-secundario: #4776A0;
    --color-enfasis: #7a4934;
    --color-enfasis-fondo: #e6bb98;
    --color-texto: #495057;
    --color-white: #ffffff;
    --color-black: #444444;
    --color-white-seo: #fff3e9;
    --color-border: #DDE2E5;
    --color-span: #999999;
    --color-fondo-suave: #EEE6DE;
    --color-title-new: #7f523e;
}

* {
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    box-sizing: border-box;
    outline: none;
    font-size: 1.6rem;
}

html {
    font-size: 62.5%;
}

li {
    margin-bottom: 1.4rem;
}

h1 {
    font-size: 4rem;
    font-weight: 700;
    color: var(--color-black);
}

h2 {
    font-size: 4rem;
    font-weight: 500;
    color: var(--color-title-new) !important;
    text-align: center;
    margin-bottom: 10px;
    line-height: 1.3;
}

h3 {
    font-size: 2.4rem;
    color: var(--color-black);
}

h4 {
    font-size: 2rem;
    color: var(--color-black);
}

h5 {
    font-size: 1.6rem;
    color: var(--color-black);
}

h6 {
    font-size: 1.4rem;
    color: var(--color-black);
}

p {
    font-size: 1.6rem;
    color: var(--color-texto);
    font-weight: 400;
    line-height: 20pt;
}

h2 strong {
    font-size: 4rem;
    font-weight: 900;
}

input {
    background-color: transparent;
    padding: 16px;
    border: none;
    color: var(--color-enfasis);
    border-bottom: 1px solid var(--color-enfasis);
    font-size: 1.6rem;
    font-family: inherit;
    resize: vertical;
    width: 100%;
}

select {
    background-color: transparent;
    padding: 16px;
    border: none;
    color: var(--color-enfasis);
    border-bottom: 1px solid var(--color-enfasis);
    font-size: 1.6rem;
    font-family: inherit;
    resize: vertical;
    width: 100%;
}

textarea {
    background-color: transparent;
    padding: 16px;
    border: none;
    color: var(--color-enfasis);
    border-bottom: 1px solid var(--color-enfasis);
    font-size: 1.6rem;
    font-family: inherit;
    resize: vertical;
    width: 100%;
}

input:focus {
    border-bottom: 3px solid var(--color-enfasis) !important;
}

select:focus {
    border-bottom: 3px solid var(--color-enfasis) !important;
}

textarea:focus {
    border-bottom: 3px solid var(--color-enfasis) !important;
}

body {
    font-family: 'Agrandir', sans-serif !important;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    display: block;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

@font-face {
    font-family: 'Agrandir';
    src: url('../fonts/AGRANDIR-GRAND-MEDIUM.TTF') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Agrandir';
    src: url('../fonts/AGRANDIR-WIDE.TTF') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Agrandir';
    src: url('../fonts/AGRANDIR-WIDE-BOLD.TTF') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Agrandir';
    src: url('../fonts/AGRANDIR-GRAND-BLACK.TTF') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Agrandir';
    src: url('../fonts/AGRANDIR-GRAND-BOLD.TTF') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

/** ESTILOS GENERALES **/

.color-enfasis {
    color: var(--color-enfasis);
}

.container {
    max-width: 1100px;
    margin: auto;
}

.section {
    padding: 80px 20px;
    width: 100%;
    height: auto;
}

.content {
    padding: 0 4rem;
}

.section--black {
    background-color: var(--color-black);
}

.section--enfasis {
    background-color: var(--color-enfasis);
}

.section--enfasis-fondo {
    background-color: var(--color-enfasis-fondo);
}

.custom-border {
    width: 100%;
    height: 1px;
    background-color: var(--color-enfasis);
}

.custom-border--white {
    background-color: var(--color-white);
}

.custom-border--left {
    margin-left: 0;
}

.services-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 6px;
}

.services-img--hero-hight {
    height: 600px;
}

.services-h3 {
    padding: 1rem 0 1rem;
    color: var(--color-enfasis);
    font-weight: bold;
    font-size: 2rem;
    text-align: center;
}

.btn {
    display: block;
    margin: 0 auto;
    width: fit-content;
    height: 50px;
    padding: 0 24px;
    background-color: var(--color-white);
    color: var(--color-enfasis);
    border: 1px solid var(--color-enfasis);
    border-radius: 6px;
    align-content: center;
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 800;
    transition: transform 0.5s ease;
}

.btn:hover {
    background-color: var(--color-black);
    color: var(--color-white-seo);
    transform: scale(1.02);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn--background-black {
    background-color: var(--color-black);
    color: var(--color-white-seo);
}

.btn i {
    font-size: 1.4rem;
    padding-right: 6px;
}

.btn--solid {
    background-color: var(--color-enfasis) !important;
    color: var(--color-white-seo) !important;
}

.btn--solid:hover {
    background-color: var(--color-black) !important;
    border: 1px solid var(--color-black) !important;
    cursor: pointer;
}

.btn--left {
    margin-left: 0 !important;
}

.btn--right {
    margin-right: 0 !important;
}

.btn--width-100 {
    width: 100%;
    text-align: center;
}

.btn--menu i {
    font-size: 2rem;
}

.btn--menu:hover {
    background-color: var(--color-black) !important;
}

.custom-image {
    width: 100%;
    height: 100%;
    min-height: 600px;
    background-image: url(../assets/images/about_home.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 6px;
}

.custom-image--contact {
    background-image: url(../assets/images/contactar-podologia.png);
}

.subtitle {
    text-align: center;
}

.custom-span-subtitle {
    display: block;
    font-size: 1.6rem;
    letter-spacing: 1.2pt;
    font-weight: bold;
    color: var(--color-enfasis);
    margin-bottom: 1rem;
}

.custom-span-subtitle--white {
    color: var(--color-white);
}

.custom-list {
    margin-bottom: 4rem;
}

.custom-list li {
    font-size: 1.6rem;
    margin-bottom: 1.4rem;
    color: var(--color-white);
}

.custom-list li i {
    padding-right: 1rem;
    color: var(--color-black);
}

.custom-parrafo {
    padding: 1rem 0 4rem;
    font-size: 1.6rem;
}

.text-align-left {
    text-align: left;
}

.text-align-right {
    text-align: right;
}

.text-align-center {
    text-align: center;
}

.pb-40 {
    padding-bottom: 4rem;
}

.pt-30 {
    padding-top: 3rem;
}

.pt-0 {
    padding-top: 0;
}

.pb-0 {
    padding-bottom: 0;
}

.row {
    display: flex;
    gap: 4rem;
}

.flex-1 {
    flex: 1;
}

.flex-2 {
    flex: 2;
}

.align-content-center {
    align-content: center;
}

.display-desktop-none {
    display: none !important;
}

.display-none {
    display: none !important;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    background-color: #25D366;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    align-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.whatsapp-float i {
    font-size: 4rem;
    color: var(--color-white);
    transition: transform 0.5s ease;
}

.whatsapp-float i:hover {
    transform: scale(1.1);
}

.whatsapp-float svg:hover {
    transform: scale(1.1);
}

/** ESTILOS HEADER **/
.top-header {
    background-color: var(--color-enfasis);
}

.top-header-content {
    width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 8px 16px;
}

.top-header-content svg {
    width: fit-content;
    height: 20px;
    fill: var(--color-white-seo);
}

.btn--menu {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.btn--menu svg {
    width: fit-content;
    height: 20px;
    fill: var(--color-white-seo);
}

.btn--svg {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.btn--svg svg {
    width: fit-content;
    height: 28px;
    fill: var(--color-white-seo);
}

.footer__item a {
    display: flex;
    gap: 0.5rem;
}

.whatsapp-menu--toggle {
    display: flex !important;
    gap: 0.5rem;
}

.footer__item svg {
    width: fit-content;
    height: 20px;
    fill: var(--color-white-seo);
}

.google-review__starts svg {
    width: fit-content;
    height: 20px;
    fill: rgb(252, 191, 2) !important;
}

.whatsapp-float svg {
    margin-top: 0.3rem;
    width: fit-content;
    height: 60px;
    fill: var(--color-white-seo);
}

.custom-list svg {
    width: fit-content;
    height: 25px;
    fill: var(--color-enfasis);
}


.post-content svg {
    width: fit-content;
    height: 20px;
    fill: var(--color-enfasis);
}

.post-content time {
    display: flex;
    gap: 0.2rem;
    align-items: center;
}

.post-content__category {
    display: flex;
    gap: 0.2rem;
    align-items: center;
}

.post-content__category svg {
    height: 18px !important;
}

.custom-list--svg li {
    display: flex;
    gap: 0.5rem;
}

.top-header p {
    display: flex;
    gap: 20px;
}

.top-header a {
    font-weight: 400;
    color: var(--color-white);
    font-size: 1.3rem;
}

.top-header__social {
    display: flex;
    gap: 1.5rem;
}

.top-header__social a {
    align-self: center;
    align-items: center;
    align-content: center;
    display: flex;
}

.top-header__location {
    display: flex;
    gap: .7rem;
    justify-content: end;
    align-items: center;
}

.top-header__location--mobile {
    justify-content: left;
    display: flex;
}

.main-header {
    background-color: var(--color-white);
    /* background: linear-gradient(to right, var(--color-secundario), var(--color-primario)); */
}

.main-header-content {
    /* display: block;
    justify-content: center; */
    width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 16px;
}

.logo {
    width: 100%;
    display: flex;
    justify-content: left;
}

.logo a img {
    height: 50px;
    object-fit: cover;
    display: block;
    margin-right: 4rem;
}

.main-nav {
    align-content: center;
    height: 50px;
}

.main-nav ul {
    display: flex;
    justify-content: center;
}

.main-nav ul li {
    margin-bottom: 0;
    padding-right: 2rem;
}

.main-nav ul li a {
    align-content: center;
    font-size: 1.8rem;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 6px;
    color: var(--color-title-new);
}

.main-nav ul li a:hover {
    color: var(--color-white);
    background-color: var(--color-title-new);
}

/* Botón hamburguesa */
.hamburger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 42px;
    border: 0;
    background: transparent;
    cursor: pointer;
    position: relative;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--color-enfasis);
    margin: 4px 0;
    transition: transform .25s, opacity .25s;
}

.hamburger.is-open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.hamburger.is-open span:nth-child(2) {
    opacity: 0;
}

.hamburger.is-open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* Panel lateral móvil */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 65%;
    max-width: 340px;
    height: 100vh;
    background: #fff;
    box-shadow: -4px 0 20px rgba(0, 0, 0, .1);
    padding: 20px;
    z-index: 1100;
    transition: right .28s ease;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.mobile-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

.mobile-nav li {
    border-bottom: 1px solid var(--color-enfasis);
    margin-bottom: 0;
}

.mobile-nav a {
    display: block;
    padding: 14px 6px;
    color: var(--color-enfasis);
    text-decoration: none;
    font-weight: 600;
}

/* Fondo oscuro */
.mobile-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .4);
    z-index: 1000;
}

/* Estados abiertos */
.mobile-nav.is-open {
    right: 0;
}

.mobile-backdrop[hidden] {
    display: none;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    min-height: 489.5px;
    height: auto;
    margin: auto;
}

.carousel-track-slide {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
    touch-action: pan-y;
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--color-enfasis-fondo);
    color: #fff;
    border: none;
    padding: 15px 22px;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
}

.carousel-arrow.left {
    left: 50px;
}

.carousel-arrow.right {
    right: 50px;
}

.carousel-dots {
    /* position: absolute; */
    /* bottom: -10px;
    left: 50%;
    transform: translateX(-50%); */
    display: flex;
    gap: 10px;
    justify-content: center;
    padding: 2rem 0 0;
}

.carousel-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    /* background: rgba(255, 255, 255, 0.7); */
    background-color: var(--color-enfasis);
    cursor: pointer;
}

.carousel-dots button.active {
    background: var(--color-enfasis-fondo);
}

.carousel__btn-float {
    position: absolute;
    /* top: 50px; */
    bottom: 50px;
    right: 200px;
    padding: 1.6rem 3.2rem;
    border-radius: .6rem;
    font-weight: bold;
    font-size: 2rem;
    color: var(--color-white);
    background-color: var(--color-enfasis);
}

.section-container-1000 {
    width: 1000px;
    margin: auto;
}

.section-container-1000 h2 {
    margin-bottom: 3rem;
}

.section-services__row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2rem 0 4rem;
}

.section-services__item {
    flex: 1;
    text-align: center;
}

.section-services__item p {
    margin-bottom: 1.5rem;
    font-size: 2.4rem;
    color: var(--color-enfasis);
}

.about-benefits--section {
    padding: 8rem 1.6rem;
    background-color: var(--color-fondo-suave);
}

.about-benefits {
    align-content: center;
}

.about-benefits h2 {
    color: var(--color-enfasis);
    font-weight: 900;
}

.about-benefits li {
    font-size: 1.8rem;
    color: var(--color-enfasis);
}

.about-benefits li i {
    font-weight: bold;
    font-size: 2rem;
    padding-right: 0.5rem;
    color: var(--color-enfasis);
}

.about-benefits__card {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.about-benefits__card figure {
    flex: 1;
    padding: 2rem;
    height: fit-content;
    text-align: center;
}

.about-benefits__card img {
    height: 100px;
    margin-bottom: 1rem;
}

.about-benefits__card figure h3 {
    color: var(--color-enfasis);
    font-size: 3.6rem;
    font-weight: bold;
}

.about-benefits__card figure p {
    color: var(--color-enfasis);
    line-height: 20pt;
    font-size: 2.4rem;
    text-align: left;
}

.team {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.6rem;
    padding-top: 2rem;
}

.team--about {
    padding-bottom: 40px;
}

.team__image {
    flex: 1;
    width: 100%;
    height: 320px;
    position: relative;
}

.team__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.team__image figcaption {
    padding: 1rem;
    text-align: center;
    position: absolute;
    width: 90%;
    border-radius: 6px;
    background-color: var(--color-enfasis);
    bottom: -35px;
    left: 14px;
}

.team__image figcaption h3 {
    font-size: 1.8rem;
    color: var(--color-white);
}

.team__image figcaption p {
    font-size: 1.5rem;
    color: var(--color-white);
    line-height: 15pt;
}

.contact__item {
    flex: 1;
    width: 100%;
}

.contact__item h2 {
    font-weight: bold;
    margin-bottom: 1rem !important;
}

.contact__item p {
    color: var(--color-enfasis);
    font-size: 2.2rem;
    line-height: 25pt;
}

.contact__item p b {
    font-size: 2.2rem;
}

.contact__item--content {
    padding: 12rem 4rem;
}

.form button {
    margin-top: 2rem;
    color: var(--color-enfasis);
    background-color: var(--color-white);
}

.form input::placeholder {
    color: var(--color-enfasis);
}

.form label {
    display: block;
    color: var(--color-enfasis);
    padding-top: 2rem;
}

.contact__item input {
    margin: 0;
    border-bottom: 1px solid var(--color-enfasis);
}

.contact__item textarea {
    border-bottom: 1px solid var(--color-enfasis);
}

.form textarea::placeholder {
    color: var(--color-enfasis);
}

.section--testimonial {
    background-color: var(--color-fondo-suave);
}

.testimonial__item {
    align-content: center;
    text-align: center;
}

.testimonial__comment {
    padding: 2.4rem;
    background-color: var(--color-enfasis);
    border-radius: 10px;
}

.testimonial__comment i {
    font-size: 5rem;
    margin-bottom: 1rem;
    color: var(--color-enfasis);
}

.testimonial__comment hr {
    margin: 2rem 0;
}

.testimonial__comment-image {
    display: flex;
    gap: 1rem;
}

.testimonial__comment-image img {
    width: 45px;
    height: 45px;
    border-radius: 100%;
}

.testimonial__comment-title {
    display: flex;
    justify-content: space-between;
    align-items: end;
}

.testimonial__comment-title .fa-instagram {
    color: var(--color-white);
    font-size: 1.6rem;
    margin: 0;
}

.testimonial__comment-name {
    align-content: center;
    width: 100%;
}

.testimonial__comment-user {
    display: flex;
    margin-bottom: .5rem;
}

.testimonial__comment-star {
    display: flex;
    align-self: self-end;
}

.testimonial__comment-star i {
    color: var(--color-white);
    font-size: 1rem;
    margin-right: .5rem;
    margin-bottom: 0;
}

.testimonial__comment-name h3 {
    color: var(--color-white);
    font-size: 1.6rem;
    text-align: left;
    margin-right: 2rem;
}

.testimonial__comment-name p {
    text-align: left;
    font-size: 1.4rem;
    color: var(--color-white);
}

.testimonial__review {
    margin-top: 1rem;
    color: var(--color-white);
}

:root {
    --gap: 20px;
}

.testimonial-carousel {
    position: relative;
    padding: 3rem 60px 0;
}

/* Viewport que recorta el contenido */
.carousel-viewport {
    overflow: hidden;
    width: 100%;
}

/* Pista */
.carousel-track {
    display: flex;
    gap: var(--gap);
    transition: transform 0.45s ease-in-out;
    will-change: transform;
}

/* 1 por vista (mobile) */
.testimonial__comment {
    flex: 0 0 100%;
    border-radius: 12px;
}

/* 2 por vista en desktop:
   2 * ancho + 1 gap = 100%  => ancho = (100% - gap) / 2  */
@media (min-width: 900px) {
    .testimonial__comment {
        flex: 0 0 calc((100% - var(--gap)) / 2);
    }
}

/* Flechas fuera del slide */
.testimonial-carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: 0;
    background: var(--color-enfasis);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    cursor: pointer;
    font-size: 22px;
    line-height: 40px;
    z-index: 5;
}

.testimonial-carousel-arrow.prev {
    left: 10px;
}

.testimonial-carousel-arrow.next {
    right: 10px;
}

/* Dots más abajo, fuera del slide */
.testimonial-carousel-dots {
    text-align: center;
    margin-top: 20px;
}

.testimonial-carousel-dots button {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 50%;
    background: var(--color-enfasis-fondo);
    margin: 0 5px;
    cursor: pointer;
}

.testimonial-carousel-dots button.active {
    background: var(--color-enfasis);
}


.faq {
    padding: 8px 0 16px;
    counter-reset: faq;
}

.faq__title {
    text-align: center;
    font-weight: 700;
    margin: 0 0 18px;
    color: #8f5c44;
}

.faq__item {
    border-bottom: 2px solid var(--color-enfasis);
    padding: 0;
}

.faq__item summary {
    list-style: none;
    /* oculta triángulo */
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    color: var(--color-enfasis);
    font-size: clamp(18px, 2.4vw, 22px);
    outline: none;
}

/* Número 01, 02, 03… */
.faq__item summary::before {
    counter-increment: faq;
    content: counter(faq, decimal-leading-zero) ".";
    color: var(--color-enfasis);
    opacity: .9;
    width: 3ch;
    padding-left: 2rem;
    /* reserva ancho del número */
}

/* “+” a la derecha */
.faq__item summary::after {
    content: "+";
    margin-left: auto;
    color: var(--color-enfasis);
    font-weight: 700;
    line-height: 1;
}

/* Cambia a “–” al abrir */
.faq__item[open] summary::after {
    content: "–";
}

/* Texto de respuesta */
.faq__content {
    color: var(--color-texto);
    padding: 0 0 16px 3ch;
    /* alinear con el número */
    line-height: 1.7;
    font-size: 16px;
}

/* Accesibilidad: foco visible al navegar con teclado */
.faq__item summary:focus-visible {
    outline: 3px dotted var(--color-enfasis);
    outline-offset: 4px;
}




.cta-home {
    background-color: var(--color-fondo-suave);
}

.cta-home__item {
    text-align: center;
}

.cta-home h2 {
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--color-enfasis);
}

.cta-home p {
    color: var(--color-enfasis);
    font-size: 2.4rem;
    margin-bottom: 3rem;
}

.cta-home__item a {
    height: 60px;
    padding: 0 40px;
    font-size: 2.4rem;
    line-height: 2pt;
}

.cta-home__item a i {
    font-size: 2.4rem;
}

.blog-home {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 4rem 0;
}

.blog-home__article {
    width: 100%;
}

.blog-home__article img {
    border-radius: 6px;
    height: 250px;
    width: 100%;
    object-fit: cover;
    box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, .1);
}

.blog-home__article span {
    font-size: 1.4rem;
    color: var(--color-enfasis);
}

.blog-home__article span i {
    font-size: 1.3rem;
}

.blog-home__article figcaption {
    padding: 1rem 0 0;
}

.blog-home__article figcaption p {
    padding: 1rem 0;
    line-height: 15pt;
    font-size: 1.4rem;
    color: var(--color-enfasis);
}

.blog-home__article figcaption h3 {
    padding: 1rem 0 0;
    font-weight: bold;
    font-size: 1.8rem;
    color: var(--color-enfasis);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    /* nº de líneas */
    overflow: hidden;
    /* opcional: mejora el corte de palabras largas */
    word-break: break-word;
}

.blog-home__article figcaption h3 a {
    padding: 1rem 0 0;
    font-weight: bold;
    font-size: 2rem;
    color: var(--color-enfasis);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    /* nº de líneas */
    overflow: hidden;
    /* opcional: mejora el corte de palabras largas */
    word-break: break-word;
}

.blog-home__fig-right {
    padding-left: 0 !important;
    padding-right: 8rem;
}

.blog-home__info {
    display: flex;
    gap: 2rem;
    align-self: self-end;
}

.blog-home__btn {
    color: var(--color-white);
    background-color: var(--color-enfasis);
    padding: .5rem 2rem;
    border-radius: 6px;
    margin-left: auto;
}

.blog-home__btn:hover {
    background-color: var(--color-black);
}

.blog-home__info span {
    align-self: self-end;
}

.footer {
    padding-top: 5rem;
    padding-bottom: 0;
    background-color: var(--color-black);
}

.footer__content {
    display: flex;
    gap: 2rem;
    padding-bottom: 3rem;
}

.footer__item {
    flex: 1;
}

.footer__logo {
    margin-bottom: 2rem;
}

.footer__logo img {
    width: 60%;
    margin-bottom: 2rem;
}

.footer__logo p {
    line-height: 18pt;
}

.footer p {
    color: var(--color-white);
}

.footer__item h3 {
    margin-bottom: 1.6rem;
    color: var(--color-white);
}

.footer__item ul li {
    display: flex;
    align-items: center;
    font-size: 1.6rem;
    color: var(--color-white);
}

.footer__item ul li a {
    display: flex;
    align-items: center;
}

.footer__icon i {
    font-size: 1rem;
}

.footer__item ul li i {
    margin-right: 0.8rem;
    color: var(--color-white-seo);
}

.footer__item .fa-book-open {
    font-size: 1.6rem;
}

.footer__item ul li a {
    color: var(--color-white);
}

.footer__item ul li a:hover {
    color: var(--color-enfasis-fondo);
}

.footer__social {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.footer__social i {
    font-size: 1.6rem;
}

.footer__border {
    width: 200px;
    margin: 0 auto;
    height: 1px;
    background-color: var(--color-enfasis);
}

.footer__copyright {
    padding: 1rem 0 3rem;
    text-align: center;
}

.top-title {
    padding: 4rem 1.6rem;
    background-color: var(--color-fondo-suave);
}

.top-title h1 {
    padding-bottom: 1.5rem;
    font-family: 400;
    color: var(--color-title-new);
}

.top-title div {
    text-align: center;
    font-size: 1.4rem;
}

.top-title div a {
    font-weight: 500;
    color: var(--color-enfasis);
}

.top-title div span {
    font-weight: 500;
    color: var(--color-title-new);
}

.about-us__item {
    flex: 1;
    align-content: center;
}

.about-us__title {
    flex: 1;
}

.about-us__title h2 {
    font-weight: 900;
}

.about-us__description {
    flex: 1;
    padding-top: 0rem;
    align-content: center;
}

.about-us__description p {
    color: var(--color-enfasis);
}

.about-us__item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 6px;
}

.box-float--block {
    width: 100%;
    position: relative;
    bottom: 0;
    left: 0;
    min-height: auto;
}

.miviva {
    border-bottom: 2px solid var(--color-enfasis);
}

.miviva figure {
    display: flex;
    gap: 4rem;
    align-items: center;
    padding: 4rem 0;
}

.miviva figure img {
    height: 100px;
}

.miviva__title {
    color: var(--color-white);
    background-color: var(--color-enfasis);
    width: fit-content;
    padding: 1.2rem 4rem 0.5rem;
    border-radius: 6px;
    margin-bottom: 2rem;
}

.miviva p {
    color: var(--color-enfasis);
}

.miviva__valores {
    padding-top: 4rem;
    text-align: center;
    justify-content: center;
}

.miviva__valores .miviva__title {
    margin: 2rem auto 0;
}

.miviva__valores figure p {
    color: var(--color-enfasis);
    font-weight: 600;
}

.miviva__icons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding-top: 3rem;
}

.miviva__icons img {
    height: 80px;
    margin-bottom: 1rem;
}

.contact-call-map {
    padding: 3rem;
    background-color: var(--color-enfasis);
}

.contact-call-map p {
    color: var(--color-white);
}

.contact-call-map img {
    height: 50px;
    margin-bottom: .5rem;
}

.contact__info {
    text-align: center;
}

.faq__section {
    padding: 4rem 0;
}

.faq__section details {
    background-color: #fff;
    border-radius: 12px;
    padding: 1.2rem 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid #ddd;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.faq__section details[open] {
    border-color: var(--color-enfasis);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
}

.faq__section summary {
    font-weight: 600;
    cursor: pointer;
    font-size: 1.8rem;
    color: #333;
    display: flex;
    align-items: center;
    position: relative;
    padding-right: 2rem;
}

.faq__section summary::after {
    content: "+";
    font-size: 1.6rem;
    position: absolute;
    right: 0;
    transition: transform 0.3s ease;
    color: var(--color-enfasis);
}

.faq__section details[open] summary::after {
    content: "–";
    transform: rotate(180deg);
}

.faq__section p {
    margin-top: 1.4rem;
    color: #555;
    font-size: 1.6rem;
    line-height: 1.6;
}

.blog-article {
    padding: 0;
}

.blog-article h2 {
    font-size: 2.6rem;
    text-align: left;
    padding-top: 3rem;
}

.blog-article img {
    width: 100%;
    border-radius: 6px;
    box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, .1);
}

.blog-article ol {
    margin-left: 2rem;
    padding-top: 1rem;
}

.blog-article ol li {
    list-style: decimal;
}

.blog-article ol li b {
    color: var(--color-enfasis);
}

.blog-article ul {
    padding-top: 1rem;
    margin-left: 2rem;
}

.blog-article li {
    list-style: initial;
}

.blog-article a {
    color: var(--color-enfasis);
    cursor: pointer;
    text-decoration: underline !important;
}

.blog-article th,
td {
    font-size: 1.3rem;
    padding: 0.5rem;
}

.blog-article td strong {
    font-size: 1.3rem;
}

.share-article {
    margin-top: 3rem;
    margin-bottom: 3rem;
    border-top: 1px solid #ddd;
}

.banner-ads-article {
    top: 20px;
    position: sticky;
    height: fit-content;
}

.share-article h2 {
    text-align: left;
    font-size: 2.2rem;
    color: var(--color-secundario);
    margin-bottom: 1.5rem;
}

.share-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
}

.share-buttons ul {
    margin-left: 0 !important;
}

.share-buttons li {
    list-style: none;
}

.share-buttons a {
    color: var(--color-white);
    font-size: 1.4rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s;
}

.share-facebook {
    background-color: #3b5998;
}

.share-whatsapp {
    background-color: #25D366;
}

.share-linkedin {
    background-color: #0077B5;
}

.share-x {
    background-color: #000000;
}

.share-email {
    background-color: #df6057;
}

.share-buttons a:hover {
    background-color: var(--color-enfasis);
}

.share-buttons i {
    font-size: 1rem;
}

.services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.services--row-center {
    display: flex;
    justify-content: center;
}

.services--row-center figure {
    width: 320px;
    justify-content: center;
}

.services__article img {
    width: 100%;
}

.blog {
    padding-top: 2rem;
    display: grid;
    gap: 2rem;
    row-gap: 4rem;
    grid-template-columns: repeat(3, 1fr);
}

.blog__article {
    width: 100%;
}

.blog__article img {
    width: 100%;
    border-radius: 6px;
}

.blog__article span {
    font-size: 1.4rem;
    color: var(--color-enfasis);
}

.blog__article figcaption {
    padding: 2rem 0;
}

.blog__article figcaption p {
    padding-bottom: 1rem;
    color: var(--color-enfasis);
}

.blog__article figcaption h3 {
    padding: 1rem 0 1rem;
    font-weight: bold;
    color: var(--color-enfasis);
}

.instagram-text {
    color: var(--color-enfasis);
}

.service-info h2 {
    font-weight: 900;
    font-size: 3.4rem;
    color: var(--color-enfasis) !important;
}

.service-info p {
    padding-top: 1.5rem;
    color: var(--color-enfasis);
}

.service-info ul {
    padding: 1rem 0 0 3rem;
}

.service-info li {
    color: var(--color-enfasis);
    list-style: initial;
}

.service-info .service-price {
    margin: 2rem 0 1rem;
    font-weight: 800;
    color: var(--color-enfasis);
}

.service-info .fa-square-check {
    font-size: 2.5rem;
}

.service-info span {
    font-weight: 800;
    font-size: 2.4rem;
}

#service-relacionados-title {
    font-size: 3.2rem;
}

#service-relacionados-title strong {
    font-size: 3.2rem;
}

.reclamos-form {
    background: white;
    padding: 30px;
    border-radius: 10px;
    margin-top: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.099);
}

.reclamos-form fieldset {
    border: none;
    margin-bottom: 30px;
}

.reclamos-form legend {
    font-weight: bold;
    color: var(--color-enfasis);
    font-size: 2rem;
    margin-bottom: 10px;
}

.reclamos-form label {
    display: block;
    color: var(--color-enfasis);
    margin: 10px 0 4px;
    font-weight: 500;
    font-size: 1.6rem;
}

.reclamos-form input,
.reclamos-form select,
.reclamos-form textarea {
    width: 100%;
    padding: 16px;
    font-size: 1.4rem;
    border-radius: 6px;
    border: 1px solid #ccc;
    margin-bottom: 10px;
}

.reclamo-row {
    display: flex;
    gap: 20px;
}

.reclamo-row div {
    flex: 1;
}

.reclamo-row-check {
    display: flex !important;
    justify-content: left;
    align-items: center;
    width: 100%;
}

.reclamo-row-check input {
    width: 30px;
    margin-bottom: 0;
}

.reclamo-row-check a {
    color: var(--color-enfasis);
    font-weight: 600;
    margin-left: 6px;
}

.reclamo-row-check a:hover {
    color: var(--color-enfasis);
    text-decoration: underline;
}

.reclamo-btn {
    margin-top: 20px;
    cursor: pointer;
}

.registro-exitoso {
    width: 100%;
}

.registro-exitoso img {
    width: 100%;
    border-radius: 2rem;
}

.politica-privacidad h3 {
    margin-top: 2rem;
}

.main-privacidad a {
    font-weight: 600;
    color: var(--color-enfasis) !important;
}

.main-privacidad h3 {
    color: var(--color-enfasis);
}

.main-privacidad strong {
    color: var(--color-enfasis);
}

.error__item h1 {
    color: var(--color-enfasis);
}

.error__item figure img {
    width: 100%;
}

.blog-article__related {
    margin-top: 2rem;
    padding: 2rem;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    background-color: var(--color-fondo-suave);
    color: var(--color-title-new);
    font-weight: bold;
}

.blog-article__related h3 {
    margin-bottom: 0;
    margin-top: 1rem;
}

.blog-article__related h3 a {
    color: var(--color-enfasis);
    font-weight: bold;
    text-decoration: none !important;
}

.blog-article__related h3 a:hover {
    text-decoration: underline !important;
}



.google-review__title {
    padding: 2rem 2rem 0;
}

.google-review__title-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    border-radius: 8px;
    background-color: rgb(248, 248, 248);
    padding: 24px;
}

.google-review__title-logo {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 6px;
    padding-bottom: 2rem;
}

.google-review__title-calification {
    display: flex;
    gap: 6px;
}

.google-review__title-calification .google-review__starts {
    padding-top: .2rem;
}

.google-review__title-calification p {
    font-size: 2rem;
}

.google-review__title-calification span {
    font-size: 1.2rem;
}

.google-review__card {
    padding: 1rem;
}

.google-review__content {
    padding: 2.4rem;
    border-radius: 8px;
    background-color: rgb(248, 248, 248);
}

.google-review__name {
    display: flex;
    gap: 1rem;
    padding-bottom: 1rem;
}

.google-review__image svg {
    width: 20.74px;
    height: 21.12px;
    margin-left: -20px;
    margin-bottom: -5px;
}

.google-review__name h3 {
    display: flex;
    gap: 1rem;
    font-size: 1.4rem;
}

.google-review__name h3 svg {
    width: 13.72px;
    height: 13.72px;
}

.google-review__name span {
    font-size: 1.2rem;
    color: var(--color-texto);
}

.google-review__starts {
    display: flex;
    gap: .2rem;
    color: rgb(252, 191, 2) !important;
}

.google-review__text p {
    padding-top: 1rem;
    font-size: 1.4rem;
    color: var(--color-texto) !important;
    line-height: normal !important;
}


.google-review {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 2rem 0;
}

.google-review__carousel {
    position: relative;
    overflow: hidden;
}

.google-review__track {
    display: flex;
    transition: transform 0.5s ease;
    padding: 0 1rem;
}

.google-review__card {
    flex: 0 0 33.33%;
    box-sizing: border-box;
    padding: 1rem;
}

.google-review__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(17, 17, 17, 0.5);
    color: var(--color-white);
    border: none;
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem 1.1rem;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: background 0.3s ease;
}

.google-review__arrow:hover {
    background-color: var(--color-enfasis);
}

.google-review__arrow.prev {
    left: 10px;
}

.google-review__arrow.next {
    right: 10px;
}

.google-review__dots {
    text-align: center;
    margin-top: 1rem;
}

.google-review__dots button {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    margin: 0 5px;
    border: none;
    background-color: #ccc;
    cursor: pointer;
    transition: background 0.3s ease;
}

.google-review__dots button.active {
    background-color: var(--color-enfasis);
}

@media (max-width: 768px) {
    .google-review__card {
        flex: 0 0 100%;
    }
}

.pagination {
    width: 100%;
}

.pagination ul {
    list-style: none;
    padding: 4rem 0 0;
    display: flex;
    gap: 1.0rem;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
}

.pagination a {
    padding: 1.0rem 1.3rem;
    border-radius: 100px;
    background-color: var(--color-enfasis-fondo);
    color: var(--color-enfasis);
    font-size: 1.4rem;
}

.pagination a:hover {
    background-color: var(--color-enfasis);
    color: var(--color-white);
    font-weight: bold;
    box-shadow: 0 0px 8px #7f523e;
}

.pagination a.active,
.pagination a[aria-current="page"] {
    background: var(--color-enfasis);
    color: var(--color-white);
    font-weight: bold;
}