body {
    background-color: #FFD6D1;
    margin-top: 70px;
    font-family: 'Segoe UI', sans-serif;
}

/* NAVBAR */
.custom-navbar {
    background-color: rgba(0, 75, 68, 0.95);
    backdrop-filter: blur(10px);
}

/* HERO */
.hero {
    margin-top: -40px !important;
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 1s ease-in-out;
}

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: white;
    max-width: 500px;
    animation: fadeUp 1.2s ease;
}

.hero-overlay h1 {
    font-size: 2.5rem;
    font-weight: bold;
}

.hero-overlay p {
    color: #f1f1f1;
}

/* CARDS */
.custom-card {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(12px);
    border: none;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    transition: 0.4s;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.custom-card:hover {
    transform: translateY(-10px) scale(1.02);
}

/* TEXTOS */
h3 {
    color: #004B44;
}

/*p {*/
/*    color: #004B44;*/
/*}*/

/* BOTONES */
.btn-custom {
    background-color: #014B43;
    color: #FFFFFF;
    border: none;
    padding: 10px 25px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-custom:hover {
    background-color: #3D907E;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* FOOTER */
.footer {
    background-color: #0B314B;
    color: white !important;
    padding: 40px 0;
    text-align: center;
}

/* ANIMACIONES */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
