* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

img {
    max-width: 100%;
    height: auto;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f5f5f5;
    color: #2b2b2b;
    overflow-x: hidden;
}

.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;

    padding: 20px 50px;

    display: flex;
    align-items: center;

    z-index: 10;
}

.logo-img {
    width: 220px;

    transition: 0.3s;

    background: transparent;

    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.5));
}

.logo-img:hover {
    transform: scale(1.05);
}

.hero {
    position: relative;

    min-height: 100vh;

    background:
        linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
        url('img/fondo.webp');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 120px;

    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,0.5),
            transparent
        );

    z-index: 1;
}

.overlay {
    width: 100%;
    height: 100%;
}

.hero-content {
    min-height: 100vh;

    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;

    text-align: center;

    color: white;

    padding: 0 20px;
}

.hero-content h2 {
    font-size: 3rem;

    margin-bottom: 15px;

    animation: fadeInUp 1s ease;
}

.hero-content p {
    margin-bottom: 25px;

    font-size: 1.1rem;

    animation: fadeInUp 1.2s ease;
}

.btn {
    background: #00c2a8;
    color: white;

    padding: 12px 25px;

    text-decoration: none;

    border-radius: 30px;

    transition: 0.3s;

    animation: fadeInUp 1.4s ease;
}

.btn:hover {
    background: #009e8c;

    transform: scale(1.05);
}

.btn-whatsapp {
    display: inline-block;

    margin-top: 20px;

    background: #25D366;
    color: white;

    padding: 15px 30px;

    border-radius: 30px;

    text-decoration: none;

    font-weight: 600;

    transition: 0.3s;
}

.btn-whatsapp:hover {
    background: #1ebe5d;

    transform: scale(1.08);
}

.servicios {
    padding: 100px 50px;

    text-align: center;
}

.servicios h2 {
    margin-bottom: 50px;

    font-size: 2.5rem;
}

.cards {
    display: flex;

    gap: 30px;

    justify-content: center;

    flex-wrap: wrap;
}

.card {
    background: white;

    padding: 30px;

    width: 280px;

    border-radius: 15px;

    box-shadow: 0 10px 25px rgba(0,0,0,0.1);

    transition: 0.4s;

    cursor: pointer;
}

.card:hover {
    transform: translateY(-15px) scale(1.03);

    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.card h3 {
    margin-bottom: 15px;

    color: #00c2a8;

    font-size: 1.3rem;
}

.card p {
    line-height: 1.6;
}

.cta {
    background: #2b2b2b;

    color: white;

    text-align: center;

    padding: 80px 20px;
}

.cta h2 {
    font-size: 2.5rem;

    margin-bottom: 15px;
}

.cta p {
    font-size: 1rem;
}

footer {
    background:
        linear-gradient(
            135deg,
            #0a0a0a 0%,
            #111111 100%
        );

    padding: 3rem 2rem 1.5rem;

    color: #cccccc;

    border-top: 3px solid #00c2a8;
}

.footer-container {
    max-width: 1200px;

    margin: 0 auto;
}

.footer-content {
    display: flex;

    flex-wrap: wrap;

    justify-content: center;
    align-items: center;

    gap: 2rem;

    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;

    align-items: center;

    gap: 0.75rem;
}

.brand-icon {
    background: #00c2a8;

    width: 45px;
    height: 45px;

    border-radius: 12px;

    display: flex;

    align-items: center;
    justify-content: center;

    font-weight: 700;
    font-size: 1.2rem;

    color: #111;

    box-shadow: 0 4px 12px rgba(0,194,168,0.3);
}

.brand-name {
    font-weight: 700;

    font-size: 1.3rem;

    background:
        linear-gradient(
            135deg,
            #ffffff,
            #00c2a8
        );

    background-clip: text;
    -webkit-background-clip: text;

    color: transparent;
}

.footer-divider {
    border: none;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #333,
            #00c2a8,
            #333,
            transparent
        );

    margin: 1.5rem 0;
}

.copyright {
    text-align: center;

    font-size: 0.8rem;

    color: #888;
}


@keyframes fadeInUp {

    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

@media (max-width: 992px) {

    .navbar {
        padding: 20px;
        justify-content: center;
    }

    .logo-img {
        width: 180px;
    }

    .hero-content h2 {
        font-size: 2.4rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .servicios {
        padding: 80px 20px;
    }

    .servicios h2 {
        font-size: 2rem;
    }

    .card {
        width: 100%;
        max-width: 350px;
    }

}

@media (max-width: 576px) {

    .hero {
        min-height: 90vh;
    }

    .navbar {
        padding: 15px;
        justify-content: center;
    }

    .logo-img {
        width: 150px;
    }

    .hero-content h2 {
        font-size: 1.9rem;
        line-height: 1.3;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .servicios {
        padding: 70px 20px;
    }

    .servicios h2 {
        font-size: 1.8rem;
    }

    .cards {
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 100%;
        max-width: 320px;
        padding: 25px;
    }

    .cta {
        padding: 60px 20px;
    }

    .cta h2 {
        font-size: 1.8rem;
    }

    .cta p {
        font-size: 0.95rem;
    }

    .btn-whatsapp {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    footer {
        padding: 2rem 1rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .brand-name {
        font-size: 1.1rem;
    }

    .copyright {
        font-size: 0.75rem;
    }

}
