/* =========================
   VARIABLES CSS
   ========================= */
:root {
    --color-primary: #1B5E20;
    --color-accent: #2E7D32;
    --color-bg-light: #F8F9FA;
    --color-bg-cream: #fafafa;
    /* Restaurado: Fondo crema tipo papel */
    --color-text: #333333;
    --color-text-light: #555555;
    --color-white: #FFFFFF;
    --border-radius: 16px;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 15px 30px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s ease;
}

/* =========================
   RESET Y BASE
   ========================= */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', 'Inter', sans-serif;
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 0;
    min-width: 320px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.highlight {
    color: var(--color-primary);
}

.center-text {
    text-align: center;
}

/* =========================
   SECCIÓN HERO
   ========================= */
/* IMPORTANTE: Eliminamos el padding del main solo en la home para controlar el fondo */
main {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

.hero-section {
    background-color: #ffffff;
    min-height: auto;
    height: auto;
    padding: 80px 0 40px;
    position: relative;
    display: flex;
    align-items: center;
    overflow-x: hidden;
    width: 100%;
    box-sizing: border-box;
}

@media (min-width: 1025px) {
    .hero-section {
        min-height: 800px;
        height: 100vh;
        padding-top: 0;
    }
}

.relative-container {
    position: relative;
    height: 100%;
}

/* .relative-container is kept as is */

.hero-section .container {
    position: relative;
    z-index: 10;
    /* High z-index to stay above background */
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* Vertically align text */
}

@media (min-width: 768px) and (max-width: 1024px) {
    .hero-section .container {
        justify-content: center;
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 600px;
    margin-left: -300px;
    /* Move text more to the left as requested */
    text-align: left;
}

@media (min-width: 768px) and (max-width: 1024px) {
    .hero-section {
        flex-direction: column;
        justify-content: center;
        padding-top: 100px;
        padding-bottom: 60px;
        height: auto;
        min-height: auto;
    }

    .hero-section .container {
        text-align: center;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
        margin-bottom: 40px;
        width: 100%;
        max-width: 100%;
    }

    .hero-content {
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
        text-align: center;
        width: 100%;
    }

    .hero-title-new {
        text-align: center;
    }

    .hero-cta-new {
        margin: 0 auto;
        display: flex;
        justify-content: center;
    }

    .hero-image-container {
        position: relative;
        width: 100%;
        height: auto;
        top: auto;
        right: auto;
        transform: none;
        justify-content: center;
        margin-top: 20px;
    }

    .hero-main-image {
        max-height: 50vh;
        width: 100%;
        object-position: center;
    }
}

.hero-image-container {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    /* Occupy full section width */
    height: 100%;
    z-index: 1;
    /* Below content */
    display: flex;
    align-items: center;
    justify-content: flex-end;
    pointer-events: none;
    overflow: hidden;
    /* Prevent spillover */
}

.hero-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Cover the area to look like a background */
    object-position: right center;
    /* Anchor image to right so van is always visible */
}

.hero-title-new {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 2rem;
    line-height: 1.2;
    color: #000000;
    margin-bottom: 24px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

@media (min-width: 1025px) {
    .hero-title-new {
        font-size: 80px;
        line-height: 101.78%;
        margin-bottom: 40px;
    }
}

.hero-title-new .highlight {
    color: var(--color-primary);
    font-weight: 700;
}

/* CTA Rectangular */
.hero-cta-new {
    background-color: #1B5E20;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 18px;
    width: 100%;
    max-width: 100%;
    height: 56px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(27, 94, 32, 0.3);
    transition: all 0.3s ease;
    text-transform: none;
    white-space: normal;
    box-sizing: border-box;
    word-wrap: break-word;
}

@media (min-width: 1025px) {
    .hero-cta-new {
        font-size: 24px;
        width: 634px;
        height: 77px;
        padding: 0;
        white-space: nowrap;
    }
}

.hero-cta-new:hover {
    background-color: #144a18;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(27, 94, 32, 0.4);
}

/* =========================
   SECCIÓN POR QUÉ ELEGIRNOS (REDISEÑO EXACTO)
   ========================= */
.why-choose-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.why-top-split {
    display: grid;
    grid-template-columns: auto 1fr;
    /* Let image define first col width */
    gap: 40px;
    /* Reduced separation */
    align-items: center;
    margin-bottom: 50px;
    /* Reduced to 50px */

    /* ALINEAR CON LAS TARJETAS: Mismo ancho completo */
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 0;
    /* Remove padding to gain space and move content left */
    box-sizing: border-box;
}

.section-title-alt {
    font-size: 3.5rem;
    /* Título más grande como en la imagen */
    font-weight: 800;
    line-height: 1.15;
    color: #000;
    margin-bottom: 40px;
    /* Mayor separación con la descripción */
}

.why-text-col {
    margin-left: 0;
    padding-right: 60px;
    /* Safety buffer from right edge */
    width: 100%;
    max-width: 838px;
    /* Target width, but allows shrinking */
}

.why-text-col p {
    font-family: 'Open Sans', sans-serif;
    font-size: 24px;
    line-height: 33px;
    color: #000000;
    margin-bottom: 24px;
    /* Slight margin retention between paragraphs */
    font-weight: 400;
    text-align: justify;
    font-style: normal;
}

.why-image-col {
    display: flex;
    justify-content: flex-start;
    /* Align image to left */
    align-items: center;
}

.team-img {
    width: 885px;
    /* Exact width */
    height: 473px;
    /* Exact height */
    object-fit: cover;
    margin-left: 90px;
    /* Exact margin from left */
    margin-right: 0;
    margin-right: 0;
    border-radius: 20px;
    box-shadow: none;
    /* Shadow removed */
    transition: var(--transition);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    /* Exact gap */

    /* OCUPAR TODO EL ANCHO DE LA PANTALLA */
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 0 124px 0 90px;
    /* Left 90px, Right 124px */
    box-sizing: border-box;
}

.feature-card {
    background-color: #F8FEFB;
    /* Mint background */
    border-radius: 20px;
    /* padding: 28px 24px; Removed padding as we use absolute positioning */
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.05);
    /* Added soft shadow as requested */
    transition: var(--transition);
    border: none;
    /* Clean look */

    width: 409px;
    /* Fixed width */
    height: 240px;
    /* Fixed height */
    box-sizing: border-box;
    position: relative;
    /* Context for absolute children */
    overflow: hidden;
    /* Ensure content stays inside */
}

/*.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}*/

/* Cabecera: Wrapper sin efecto visual */
.feature-header {
    display: contents;
    /* Allows children to be positioned relative to card */
}

.feature-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    left: 28px;
    top: 58px;

    background: rgba(33, 120, 77, 0.15);
    /* Ellipse 11 background */
    border-radius: 50%;
    /* Assume circle for ellipse */
    color: #006045;
    /* Icon color */

    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 44px;
    /* Adjusted to fit inside 50px nicely */
    height: 44px;
    transform: translate(15px, -15px);
    /* Move diagonally up-right */
}

.feature-title {
    position: absolute;
    left: 98px;
    /* Closer to icon */
    top: 48px;
    /* Centered visually with icon */
    width: 270px;
    /* Container width */

    font-family: 'Montserrat', sans-serif;
    font-size: 25px;
    font-weight: 700;
    line-height: 25px;
    color: #006045;
    margin: 0;
}

.feature-description {
    position: absolute;
    left: 32px;
    top: 130px;
    /* Adjusted slightly up if needed */
    width: 334px;

    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 20px;
    line-height: 26px;
    /* Justified reading */
    color: #030213;
    /* Dark/Black from ref */
    margin: 0;
}


/* =========================
   SECCIÓN SERVICIOS (REDISEÑADA)
   ========================= */
.services-section {
    position: relative;
    padding: 60px 0;
    overflow: hidden;
    min-height: auto;
    background-image: url('../images/2.png'), linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
    background-blend-mode: overlay;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media (min-width: 1025px) {
    .services-section {
        padding: 100px 0 120px;
        min-height: 1600px;
    }
}

.services-section .container {
    position: relative;
    z-index: 2;
    height: 100%;
}

.services-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.3;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
    padding-top: 20px;
}

@media (min-width: 1025px) {
    .services-title {
        font-size: 3rem;
        text-align: right;
        margin-bottom: 120px;
        padding-top: 60px;
    }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    width: 100%;
    max-width: 100%;
    padding-top: 0;
    position: relative;
    left: 0;
    transform: none;
    box-sizing: border-box;
}

@media (min-width: 1025px) {
    .services-grid {
        width: 80vw;
        padding-top: 900px;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
    }
}

.service-card {
    height: 320px;
    /* Altura fija para el efecto flip */
    perspective: 1000px;
    /* Perspectiva 3D */
    cursor: pointer;
}

.service-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.service-card:hover .service-card-inner {
    transform: rotateY(180deg);
}

.service-front,
.service-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-front {
    background-color: #ffffff;
    transform: rotateY(0deg);
}

.service-front h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.3;
    margin: 0;
    text-align: center;
}

.service-back {
    background-color: #ffffff;
    /* Fondo blanco como el frente */
    color: #333;
    /* Texto oscuro */
    transform: rotateY(180deg);
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
    padding: 35px 30px;
}

.service-back p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
    color: #333;
}

.service-link {
    color: var(--color-primary);
    background-color: #f0f0f0;
    /* Fondo gris claro */
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-block;
    margin-top: 15px;
    padding: 12px 24px;
    /* Padding para botón */
    border-radius: 8px;
    /* Bordes redondeados */
    transition: all 0.3s;
}

.service-link:hover {
    background-color: #e0e0e0;
    /* Gris más oscuro al hover */
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* =========================
   TESTIMONIOS + PASOS
   ========================= */
.testimonials-steps-section {
    padding: 100px 0;
    background: #ffffff;
}

/* TESTIMONIOS */
.testimonials-area {
    margin-bottom: 100px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 50px;
    line-height: 1.2;
}

.carousel-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 20px 0 50px;
    position: relative;
}

.carousel-wrapper::before,
.carousel-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.carousel-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #f3f3f3, transparent);
}

.carousel-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #f3f3f3, transparent);
}

.carousel-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scroll-horizontal 40s linear infinite;
}

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

    100% {
        transform: translateX(-50%);
    }
}



.testimonial-card {
    width: 414px;
    max-width: 100%;
    height: auto;
    min-height: 400px;
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    flex-shrink: 0;
    position: relative;
    box-sizing: border-box;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.testimonial-card h4 {
    position: relative;
    width: 100%;
    height: auto;
    left: 0;
    top: 0;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.3;
    text-align: center;
    letter-spacing: -0.02em;
    color: #000000;
    margin: 0 0 16px 0;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.testimonial-user img {
    position: relative;
    width: 50px;
    height: 50px;
    left: 0;
    top: 0;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.user-name {
    position: relative;
    width: auto;
    height: auto;
    left: 0;
    top: 0;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #000000;
    display: block;
    margin-bottom: 4px;
}

.user-location {
    position: relative;
    width: auto;
    height: auto;
    left: 0;
    top: 0;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #000000;
    display: block;
}

.testimonial-card p {
    position: relative;
    width: 100%;
    top: 0;
    bottom: auto;
    left: 0;
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    display: block;
    letter-spacing: -0.02em;
    color: #000000;
    margin: 0 0 16px 0;
    flex: 1;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    position: relative;
    bottom: 0;
    right: 0;
    margin-top: auto;
    justify-content: center;
}

@media (min-width: 1025px) {
    .testimonial-card {
        padding: 0;
        height: 550px;
        display: block;
    }

    .testimonial-card h4 {
        position: absolute;
        width: 393px;
        height: 60px;
        left: 8px;
        top: 28px;
        font-size: 25px;
        line-height: 30px;
        margin: 0;
    }

    .testimonial-user {
        display: block;
        position: relative;
    }

    .testimonial-user img {
        position: absolute;
        left: 20px;
        top: 100px;
    }

    .user-name {
        position: absolute;
        width: 250px;
        height: 22px;
        left: 80px;
        top: 105px;
        font-size: 20px;
        line-height: 24px;
        margin: 0;
    }

    .user-location {
        position: absolute;
        width: 250px;
        height: 20px;
        left: 80px;
        top: 126px;
        font-size: 20px;
        line-height: 24px;
    }

    .testimonial-card p {
        position: absolute;
        width: 350px;
        top: 180px;
        bottom: 60px;
        left: 32px;
        font-size: 18px;
        line-height: 26px;
        margin: 0;
    }

    .testimonial-stars {
        position: absolute;
        bottom: 30px;
        right: 30px;
        margin-top: 0;
        justify-content: flex-start;
    }
}

.star {
    width: 32px;
    height: 32px;
}

/* PASOS */
/* PASOS Section Refactor for Absolute Postioning */
.steps-section {
    position: relative;
    background: #fff;
    overflow: hidden;
    padding: 40px 0;
    margin-top: 0;
    height: auto;
    min-height: auto;
    width: 100%;
}

@media (min-width: 1025px) {
    .steps-section {
        padding-top: 0;
        margin-top: -120px;
        height: 1200px;
    }
}

.steps-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: auto;
    left: 0;
    transform: none;
    padding: 0 20px;
    box-sizing: border-box;
}

@media (min-width: 1025px) {
    .steps-container {
        width: 1920px;
        height: 100%;
        left: 50%;
        transform: translateX(-50%);
        padding: 0;
    }
}

/* Titles */
.steps-main-title {
    position: relative;
    width: 100%;
    height: auto;
    left: 0;
    top: 0;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 2.5rem;
    line-height: 1.2;
    text-align: center;
    color: #000000;
    margin: 0 0 20px 0;
    z-index: 5;
}

@media (min-width: 1025px) {
    .steps-main-title {
        position: absolute;
        width: 1370px;
        height: 80px;
        left: 308px;
        top: 92px;
        font-size: 70px;
        line-height: 85px;
        margin: 0;
    }
}

.steps-main-title .highlight {
    color: #006045;
    /* Match design green */
}

.steps-main-description {
    position: relative;
    width: 100%;
    height: auto;
    left: 0;
    top: 0;
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 1.1rem;
    line-height: 1.5;
    text-align: center;
    color: #000000;
    margin: 0 0 32px 0;
    z-index: 5;
}

@media (min-width: 1025px) {
    .steps-main-description {
        position: absolute;
        width: 1211px;
        height: 82px;
        left: 394px;
        top: 188px;
        font-size: 28px;
        line-height: 38px;
        margin: 0;
    }
}

/* Step Titles */
.step-title-1,
.step-title-2,
.step-title-3 {
    position: relative;
    width: 100%;
    height: auto;
    left: 0;
    top: 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1.2;
    text-align: center;
    color: #000000;
    margin: 12px 0 0 0;
    z-index: 5;
}

@media (min-width: 1025px) {
    .step-title-1 {
        position: absolute;
        width: 271px;
        height: 79px;
        left: 302.24px;
        top: 550px;
        font-size: 36px;
        line-height: 37px;
        margin: 0;
    }

    .step-title-2 {
        position: absolute;
        width: 268px;
        height: 65px;
        left: 860px;
        top: 557px;
        font-size: 36px;
        line-height: 37px;
        margin: 0;
    }

    .step-title-3 {
        position: absolute;
        width: 279px;
        height: 80px;
        left: 1353px;
        top: 556px;
        font-size: 36px;
        line-height: 37px;
        margin: 0;
    }
}

/* SVG Connector Line - DESHABILITADO */
.steps-connector-svg {
    display: none !important;
}

/* Estado inicial: path oculto - DESHABILITADO */
.steps__path {
    display: none !important;
}

/* Animaciones de steps - DESHABILITADAS */
.steps-animation-target .step-item,
.steps-animation-target .step-title,
.steps-animation-target .step-icon {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
}

/* Background Circles - Merged into Icons */
/* .step-bg-1, .step-bg-2, .step-bg-3 removed */

/* Icons */
.step-icon-1,
.step-icon-2,
.step-icon-3 {
    z-index: 6;
    /* Interior icons above circles */
    cursor: pointer;
    transition: all 0.3s ease;

    /* Merged Background Styles */
    background: #d3d3d3;
    /* Light gray default */
    box-shadow: 0px 8px 19.5px rgba(0, 0, 0, 0.25);
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon-1:hover,
.step-icon-2:hover,
.step-icon-3:hover {
    transform: scale(1.34);
    /* Grow to approx 200px */
    background: rgba(0, 96, 69, 0.5);
    /* Greenish hover as requested */
    /* Remove text decoration if any */
    text-decoration: none;
}

/* Icons positioning */
.step-icon-1,
.step-icon-2,
.step-icon-3 {
    position: relative;
    width: 120px;
    height: 120px;
    left: 0;
    top: 0;
    margin: 0 auto;
}

@media (min-width: 1025px) {
    .step-icon-1 {
        position: absolute;
        width: 150px;
        height: 151.32px;
        left: 361px;
        top: 342.98px;
        margin: 0;
    }

    .step-icon-2 {
        position: absolute;
        width: 150px;
        height: 151.32px;
        left: 915px;
        top: 338.95px;
        margin: 0;
    }

    .step-icon-3 {
        position: absolute;
        width: 150px;
        height: 151.32px;
        left: 1418px;
        top: 342.98px;
        margin: 0;
    }
}

/* Svg styling: Fixed size inside container, black color always */
.step-icon-1 svg,
.step-icon-2 svg,
.step-icon-3 svg {
    width: 100px;
    height: 100px;
    stroke: #000000;
    stroke-width: 1.3px;
    /* Thinner stroke */
    color: #000000;
}

/* Van Image Position */
.steps-bg-container {
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    z-index: 1;
    /* Lowest z-index but non-negative */
}

.steps-van-img {
    width: 100%;
    max-width: none;
    height: auto;
    object-fit: cover;
    /* cover allows filling if ratio differs, but contain is safer for full drawing. User said full width. */
    opacity: 1;
    margin-bottom: -1100px;
}

.cta-button:hover {
    background: #ccc;
    color: #111;
    transform: translateY(-2px);
}

/* =========================
   STEPS ANIMATIONS
   ========================= */

/* Estados - DESHABILITADOS */

@keyframes iconPop {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
    70% {
        transform: scale(0.95);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Hover y animaciones - DESHABILITADO */

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 1200px) {
    .hero-circle-cta {
        width: 260px;
        height: 260px;
    }

    .cta-large {
        font-size: 1.8rem;
    }

    .hero-title {
        font-size: 3.2rem;
    }
}

@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }

    /* Stack hero section on mobile/tablet */
    .hero-section {
        flex-direction: column;
        justify-content: center;
        padding-top: 100px;
        padding-bottom: 60px;
        height: auto;
        min-height: auto;
    }

    .hero-section .container {
        text-align: center;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
        margin-bottom: 40px;
        width: 100%;
        max-width: 100%;
    }

    .hero-content {
        max-width: 100%;
        margin: 0 auto;
        margin-left: 0;
        margin-right: 0;
        text-align: center;
        width: 100%;
    }

    .hero-title-new {
        text-align: center;
    }

    .hero-cta-new {
        margin: 0 auto;
        display: flex;
        justify-content: center;
    }

    .hero-image-container {
        position: relative;
        width: 100%;
        height: auto;
        top: auto;
        right: auto;
        transform: none;
        justify-content: center;
        margin-top: 20px;
    }

    .hero-main-image {
        max-height: 50vh;
        width: 100%;
        object-position: center;
    }

    .hero-title-new {
        font-size: 40px;
    }

    .why-choose-section {
        padding: 60px 0;
    }

    .why-top-split {
        grid-template-columns: 1fr;
        gap: 30px;
        width: 100%;
        position: relative;
        left: 0;
        right: 0;
        margin-left: 0;
        margin-right: 0;
        padding: 0 20px;
    }

    .why-image-col {
        order: -1;
        justify-content: center;
    }

    .team-img {
        width: 100%;
        max-width: 100%;
        height: auto;
        margin-left: 0;
        margin-right: 0;
    }

    .why-text-col {
        padding-right: 0;
        max-width: 100%;
    }

    .section-title-alt {
        font-size: 2.5rem;
        margin-bottom: 24px;
    }

    .why-text-col p {
        font-size: 18px;
        line-height: 1.6;
        text-align: left;
        margin-bottom: 16px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
        position: relative;
        left: 0;
        right: 0;
        margin-left: 0;
        margin-right: 0;
        padding: 0 20px;
    }

    .feature-card {
        width: 100%;
        height: auto;
        min-height: 200px;
        padding: 20px;
        position: relative;
    }

    .feature-icon {
        position: relative;
        width: 50px;
        height: 50px;
        left: 0;
        top: 0;
        margin-bottom: 12px;
    }

    .feature-icon svg {
        transform: none;
        width: 32px;
        height: 32px;
    }

    .feature-title {
        position: relative;
        left: 0;
        top: 0;
        width: 100%;
        font-size: 20px;
        margin-bottom: 12px;
    }

    .feature-description {
        position: relative;
        left: 0;
        top: 0;
        width: 100%;
        font-size: 16px;
        line-height: 1.5;
    }

    .services-section {
        padding: 60px 0;
        min-height: auto;
    }

    .services-title {
        font-size: 2rem;
        margin-bottom: 40px;
        padding-top: 20px;
        text-align: center;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
        padding-top: 0;
        padding: 0 20px;
        position: relative;
        left: 0;
        transform: none;
    }

    .service-card {
        height: 280px;
    }

    .service-front h3 {
        font-size: 1.5rem;
    }

    .service-back {
        padding: 25px 20px;
    }

    .service-back p {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding-bottom: 60px;
        padding-top: 80px;
    }

    .hero-title-new {
        font-size: 32px;
        margin-bottom: 24px;
    }

    .hero-cta-new {
        width: 100%;
        max-width: 100%;
        height: 56px;
        font-size: 18px;
        padding: 0 20px;
        white-space: normal;
    }

    .why-choose-section {
        padding: 40px 0;
    }

    .why-top-split {
        padding: 0 16px;
        gap: 24px;
    }

    .section-title-alt {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .why-text-col p {
        font-size: 16px;
        line-height: 1.6;
    }

    .features-grid {
        grid-template-columns: 1fr;
        padding: 0 16px;
        gap: 20px;
    }

    .feature-card {
        min-height: 180px;
        padding: 20px;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 10px;
    }

    .feature-icon svg {
        width: 28px;
        height: 28px;
    }

    .feature-title {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .feature-description {
        font-size: 14px;
        line-height: 1.5;
    }

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

    .services-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        padding: 0 16px;
        gap: 24px;
    }

    .service-card {
        height: 260px;
    }

    .service-front h3 {
        font-size: 1.3rem;
    }

    .service-back {
        padding: 20px 16px;
    }

    .service-back p {
        font-size: 0.8rem;
    }

    .testimonials-steps-section {
        padding: 40px 0;
    }

    .testimonials-area {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .testimonial-card {
        width: 300px;
        height: auto;
        min-height: 350px;
    }

    .testimonial-card h4 {
        font-size: 18px;
        padding: 0 16px;
    }

    .testimonial-card p {
        font-size: 13px;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .hero-section {
        min-height: auto;
        height: auto;
        padding-top: 80px;
        padding-bottom: 40px;
    }

    .hero-title-new {
        font-size: 28px;
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .hero-cta-new {
        width: 100%;
        max-width: 100%;
        height: 56px;
        font-size: 16px;
        padding: 0 16px;
        white-space: normal;
    }

    .hero-content {
        max-width: 100%;
        margin-left: 0;
        padding: 0;
    }

    .hero-image-container {
        margin-top: 24px;
    }

    .hero-main-image {
        max-height: 40vh;
    }

    .why-choose-section {
        padding: 40px 0;
    }

    .why-top-split {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0 12px;
        margin-bottom: 30px;
    }

    .section-title-alt {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .why-text-col {
        padding-right: 0;
        max-width: 100%;
    }

    .why-text-col p {
        font-size: 15px;
        line-height: 1.6;
        text-align: left;
        margin-bottom: 14px;
    }

    .team-img {
        width: 100%;
        max-width: 100%;
        height: auto;
        margin-left: 0;
        margin-right: 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0 12px;
    }

    .feature-card {
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: 160px;
        padding: 16px;
    }

    .feature-icon {
        position: relative;
        width: 36px;
        height: 36px;
        left: 0;
        top: 0;
        margin-bottom: 8px;
    }

    .feature-icon svg {
        width: 24px;
        height: 24px;
        transform: none;
    }

    .feature-title {
        position: relative;
        left: 0;
        top: 0;
        width: 100%;
        font-size: 16px;
        margin-bottom: 8px;
    }

    .feature-description {
        position: relative;
        left: 0;
        top: 0;
        width: 100%;
        font-size: 13px;
        line-height: 1.5;
    }

    .services-section {
        padding: 40px 0;
        min-height: auto;
    }

    .services-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
        padding-top: 20px;
        text-align: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        width: 100%;
        padding-top: 0;
        padding: 0 12px;
        position: relative;
        left: 0;
        transform: none;
    }

    .service-card {
        height: 240px;
    }

    .service-front h3 {
        font-size: 1.2rem;
    }

    .service-back {
        padding: 20px 16px;
    }

    .service-back p {
        font-size: 0.8rem;
        line-height: 1.5;
    }

    .testimonials-steps-section {
        padding: 40px 0;
    }

    .testimonials-area {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 1.6rem;
        margin-bottom: 24px;
    }

    .testimonial-card {
        width: 280px;
        height: auto;
        min-height: 350px;
        padding: 16px;
    }

    .testimonial-card h4 {
        position: relative;
        width: 100%;
        left: 0;
        top: 0;
        font-size: 18px;
        padding: 0;
        margin-bottom: 12px;
    }

    .testimonial-user {
        position: relative;
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 12px;
    }

    .testimonial-user img {
        position: relative;
        left: 0;
        top: 0;
        width: 40px;
        height: 40px;
    }

    .user-name {
        position: relative;
        left: 0;
        top: 0;
        width: auto;
        font-size: 15px;
        margin-bottom: 4px;
    }

    .user-location {
        position: relative;
        left: 0;
        top: 0;
        width: auto;
        font-size: 13px;
    }

    .testimonial-card p {
        position: relative;
        width: 100%;
        left: 0;
        top: 0;
        font-size: 13px;
        line-height: 1.5;
        margin-bottom: 12px;
    }

    .testimonial-stars {
        position: relative;
        bottom: 0;
        right: 0;
        margin-top: 8px;
    }

    .star {
        width: 20px;
        height: 20px;
    }

    .steps-section {
        height: auto;
        min-height: auto;
        margin-top: 0;
        padding: 40px 0;
    }

    .steps-container {
        width: 100%;
        position: relative;
        left: 0;
        transform: none;
        height: auto;
    }

    .steps-main-title {
        position: relative;
        width: 100%;
        left: 0;
        top: 0;
        height: auto;
        font-size: 1.8rem;
        line-height: 1.2;
        padding: 0 12px;
        margin-bottom: 16px;
    }

    .steps-main-description {
        position: relative;
        width: 100%;
        left: 0;
        top: 0;
        height: auto;
        font-size: 15px;
        line-height: 1.5;
        padding: 0 12px;
        margin-bottom: 32px;
    }

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 32px;
    position: relative;
}

@media (min-width: 1025px) {
    .step-item {
        margin-bottom: 0;
    }
}

    .step-icon-1,
    .step-icon-2,
    .step-icon-3 {
        position: relative;
        width: 80px;
        height: 80px;
        left: 0;
        top: 0;
        margin: 0 auto 12px;
    }

    .step-icon-1 svg,
    .step-icon-2 svg,
    .step-icon-3 svg {
        width: 50px;
        height: 50px;
    }

    .step-title-1,
    .step-title-2,
    .step-title-3 {
        position: relative;
        width: 100%;
        left: 0;
        top: 0;
        height: auto;
        font-size: 18px;
        margin-bottom: 0;
        padding: 0 12px;
        text-align: center;
    }

    .step-connector-1,
    .step-connector-2 {
        display: none;
    }

    .steps-bg-container {
        position: relative;
        margin-top: 32px;
    }

    .steps-van-img {
        width: 100%;
        margin-bottom: 0;
    }
}

@media (max-width: 320px) {
    .container {
        padding: 0 10px;
    }

    .hero-title-new {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .hero-cta-new {
        height: 52px;
        font-size: 14px;
        padding: 0 12px;
    }

    .why-choose-section {
        padding: 32px 0;
    }

    .why-top-split {
        padding: 0 10px;
        gap: 20px;
    }

    .section-title-alt {
        font-size: 1.5rem;
        margin-bottom: 16px;
    }

    .why-text-col p {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .features-grid {
        padding: 0 10px;
        gap: 12px;
    }

    .feature-card {
        min-height: 150px;
        padding: 14px;
    }

    .feature-icon {
        width: 32px;
        height: 32px;
    }

    .feature-icon svg {
        width: 20px;
        height: 20px;
    }

    .feature-title {
        font-size: 15px;
    }

    .feature-description {
        font-size: 12px;
    }

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

    .services-title {
        font-size: 1.5rem;
    }

    .services-grid {
        padding: 0 10px;
        gap: 16px;
    }

    .service-card {
        height: 220px;
    }

    .service-front h3 {
        font-size: 1.1rem;
    }

    .service-back p {
        font-size: 0.75rem;
    }

    .testimonials-steps-section {
        padding: 32px 0;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .testimonial-card {
        width: 260px;
        padding: 14px;
    }

    .testimonial-card h4 {
        font-size: 16px;
    }

    .testimonial-card p {
        font-size: 12px;
    }

    .steps-main-title {
        font-size: 1.5rem;
    }

    .steps-main-description {
        font-size: 14px;
    }

    .step-icon-1,
    .step-icon-2,
    .step-icon-3 {
        width: 70px;
        height: 70px;
    }

    .step-icon-1 svg,
    .step-icon-2 svg,
    .step-icon-3 svg {
        width: 40px;
        height: 40px;
    }

    .step-title-1,
    .step-title-2,
    .step-title-3 {
        font-size: 16px;
    }
}