@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

html, body {
    height: 100%;
    margin: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(180deg, #ffe6f0, #fff);
    display: flex;
    flex-direction: column;
}


.navbar {
    background-color: #ff6fae;
}

.navbar ul {
    list-style: none;
    margin: 0;
    padding: 15px 0;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.navbar li {
    list-style: none;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.nav-link:hover {
    text-decoration: underline;
}


main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 40px 20px;
}


.intro-card {
    background: white;
    border-radius: 25px;
    padding: 40px;
    width: 100%;
    max-width: 700px;
    box-shadow: 0 15px 40px rgba(255, 111, 174, 0.3);
    animation: fadeIn 0.8s ease-in-out;
}

.titulo {
    color: #ff4d94;
    font-weight: 600;
    text-align: center;
}


.intro-card ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;

    display: flex;
    flex-direction: column;
    gap: 15px;
}

.intro-card li {
    text-align: center;
}


.btn {
    display: inline-block;
    background-color: #ff6fae;
    color: white;
    border-radius: 30px;
    padding: 12px 30px;
    border: none;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #ff4d94;
    transform: scale(1.05);
    color: white;
}
.img-galeria {
    width: 100%;
    height: 250px;       
    object-fit: cover;  
}



footer {
    background-color: #ff6fae;
    color: white;
    font-size: 0.9rem;
    text-align: center;
    padding: 12px 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 600px) {
    .navbar ul {
        flex-direction: column;
        gap: 10px;
    }

    .intro-card {
        padding: 25px;
    }

    .btn {
        width: 100%;
    }
}
.table {
    margin: 4 auto;
}


.table {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(255, 111, 174, 0.25);
}

.table thead {
    background-color: #ff6fae;
    color: white;
}

.table thead th {
    border: none;
    font-weight: 600;
    text-align: center;
}

.table tbody td {
    text-align: center;
    vertical-align: middle;
    color: #000000;
}



h4 {
    color: #ff4d94;
    font-weight: 600;
    text-align: center;
}

.table-rosa {
    background-color: #ff6fae;
    color: white;
}

.table-rosa th {
    background-color: #ff6fae;
    color: white;
    text-align: center;
    border: none;
}

.table tbody td {
    text-align: center;
}
