.logo {
    height: 70px;
}

.menu a {
    margin-left: 25px;
    text-decoration: none;
    color: var(--color-secondary);
    font-weight: 500;
}

.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 50px 20px;
}

.hero-content {
    max-width: 900px;
    animation: fadeUp 1s ease;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero h2 {
    margin-bottom: 20px;
    color: black !important;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    background: #25D366;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.btn:hover {
    transform: translateY(-3px);
}

section {
    padding: 80px 8%;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.card {
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-card);
    transition: .3s;
    cursor: pointer;
    border: 1px solid rgba(92, 92, 92, 0.301);
}

.card:hover {
    transform: translateY(-10px);
}

.card h3 {
    margin-bottom: 15px;
}

.why-section {
    padding-top: 0px;
}

.why-section .why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.why-section .why-grid .why-box {
    border: 1px solid rgba(92, 92, 92, 0.301);
    background: white;
    padding: 25px;
    border-radius: 15px;
}

.mapa {
    text-align: center;
}

.mapa iframe {
    width: 100%;
    height: 450px;
    border: none;
    border-radius: 20px;
    box-shadow: var(--shadow-card);
}

.whatsapp {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 70px;
    height: 70px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    text-decoration: none;
    color: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .3);
    animation: pulse 2s infinite;
    z-index: 999;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}