/* =======================
   Header / Nav
   ======================= */
.active-link {
    font-weight: 800 !important;
    border-bottom: 5px solid white;
}


/* =======================
   Hero Section
   ======================= */
.container-inicio {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.home-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.container-inicio::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(66, 154, 255, 0.05), rgba(66, 154, 255, 0.55));
    pointer-events: none;
}

.hero-sub {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}

.hero-copy {
    position: absolute;
    top: 25%;
    left: 15%;
    text-align: left;
    z-index: 2;
    color: #fff;
    opacity: 0;
    transform: translateY(6px);
}

.hero-copy h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    line-height: 1.2;
    font-size: clamp(28px, 5vw, 52px);
    margin: 0;
}

.hero-copy strong {
    font-weight: 800;
}

.home-info-img {
    position: absolute;
    top: 25%;
    right: 15%;
    width: clamp(200px, 25vw, 350px);
    z-index: 2;
    opacity: 0;
    transform: translateX(40px);
}

.home-social {
    position: absolute;
    bottom: 5%;
    left: 10%;
    display: flex;
    gap: 20px;
    z-index: 2;
}

.home-social a {
    color: #fff;
    font-size: 1.4rem;
    transition: color .2s;
}

.home-social a:hover {
    color: #009FE3;
}


/* =======================
   ¿Quiénes somos?
   ======================= */
.container-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 1% 10%;
    background: #fff;
    color: #333;
}



.home-info {
    font-family: 'Poppins', sans-serif;
    flex: 1;
}

.home-info h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #009FE3;
}

.home-info p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.car-img {
    flex: 1;
    max-width: 450px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.container-info .car-img {
    opacity: 0;
    transform: translateX(-150px);
}

.container-info .home-info {
    opacity: 0;
    transform: translateY(30px);
}


.about-list {
    list-style: none;
    padding-left: 1.5rem;
    margin: 0;
}

.about-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.about-list li i {
    position: absolute;
    left: 0;
    top: 0.2rem;
    color: #009FE3;
}


/* =======================
   Servicios
   ======================= */
.container-servicios {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 1% 10%;
    background: #f9f9f9;
    color: #333;
    flex-direction: row;
}

.container-servicios .servicio-info {
    flex: 1;
    font-family: 'Poppins', sans-serif;
}

.container-servicios h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #009FE3;
}

.container-servicios p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.container-servicios ul {
    list-style: none;
    padding-left: 1.5rem;
}

.container-servicios li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.container-servicios li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #009FE3;
    font-weight: bold;
}

.container-servicios .car-img {
    flex: 1;
    max-width: 450px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.container-ventajas {
    text-align: center;
    padding: 4rem 2rem;
}

.container-ventajas h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #333;
}

.ventajas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.ventaja-item {
    background: #fff;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ventaja-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.ventaja-item i {
    font-size: 2.5rem;
    color: #009FE3;
    margin-bottom: 1rem;
}

.ventaja-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #222;
}

.ventaja-item p {
    font-size: 0.95rem;
    color: #555;
}


.container-cta {
    background: #f9f9f9;
    padding: 5rem 2rem;
    text-align: center;
    color: #333;
    margin-top: 4rem;
    border-radius: 12px;
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.btn-cta {
    display: inline-block;
    background: #009FE3;
    color: #fff;
    padding: 0.9rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
}

.btn-cta:hover {
    background: #007bb8;
    transform: scale(1.05);
}

.container-inicio,
.container-info,
.container-servicios {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    scroll-snap-align: start;
}

.container-tail {
    min-height: 100vh;
    scroll-snap-align: start;
}