/* Estilos Globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #fff5f8;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

body.loading {
    overflow: hidden;
    height: 100vh;
}

.container {
    background-color: #fff5f8;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Loader */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff5f8;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.spinner {
    width: 70px;
    height: 70px;
    border: 8px solid rgba(255, 105, 180, 0.1);
    border-radius: 50%;
    border-top-color: #ff69b4;
    animation: spin 1s ease-in-out infinite;
    margin-bottom: 20px;
    flex-shrink: 0;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loader p {
    font-size: 18px;
    color: #ff69b4;
    font-weight: 500;
    text-align: center;
    margin: 0;
    padding: 0;
    white-space: nowrap;
}

/* Header */
header {
    padding: 20px 0;
    background-color: #fff5f8;
}

/* Estilo inicial para ícones de redes sociais */
header a img {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    width: 100px;
    height: auto;
    margin-right: 15px;
}

.logo h1 {
    font-size: 28px;
    color: #ff69b4;
    font-weight: 700;
}

.tagline {
    text-align: center;
    font-size: 16px;
    color: #777;
    margin-top: 5px;
}

/* Hero Section */
.hero {
    padding: 60px 0;
    text-align: center;
    background-color: #fff5f8;
}

.hero h2 {
    font-size: 32px;
    color: #ff69b4;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero p {
    font-size: 18px;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

/* Cards Section */
.cards {
    padding: 40px 0 30px 0;
}

.cards .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    width: 100%;
    max-width: 1200px;
}

.card {
    background-color: #fff5f8;
    overflow: hidden;
    margin-bottom: 20px;
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* A animação será controlada pelo JavaScript */
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.2s; }
.card:nth-child(3) { animation-delay: 0.3s; }
.card:nth-child(4) { animation-delay: 0.4s; }
.card:nth-child(5) { animation-delay: 0.5s; }

.card-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.card:hover .card-image {
    transform: none;
}

.card-content {
    padding: 20px;
}

.card-content h3 {
    font-size: 20px;
    color: #ff69b4;
    margin-bottom: 10px;
}

.card-content p {
    font-size: 14px;
    color: #666;
}

/* About Section */
.about {
    padding: 30px 0;
    text-align: center;
}

.about h2 {
    font-size: 32px;
    color: #ff69b4;
    margin-bottom: 20px;
}

.about p {
    font-size: 16px;
    color: #555;
    max-width: 800px;
    margin: 0 auto 30px;
}

.hours {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    margin: 0 auto;
}

.hours h3 {
    font-size: 20px;
    color: #ff69b4;
    margin-bottom: 10px;
}

.hours p {
    margin-bottom: 5px;
}

/* Contact Section */
.contact {
    padding: 30px 0;
    text-align: center;
}

.contact h2 {
    font-size: 32px;
    color: #ff69b4;
    margin-bottom: 20px;
}

.contact p {
    font-size: 16px;
    color: #555;
    max-width: 600px;
    margin: 0 auto 30px;
}

.whatsapp-button {
    display: inline-block;
    background-color: #25D366;
    color: white;
    font-size: 18px;
    font-weight: 600;
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.4);
}

/* Footer */
footer {
    background-color: #333;  /* já é preto */
    color: #fff;
}

footer p {
    margin-bottom: 10px;
}


footer .container {
    background-color: #333;
}
/* Responsividade */
@media (max-width: 768px) {
    .hero h2 {
        font-size: 26px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .cards .container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .card-image {
        width: 100%;
        max-width: 100%;
        height: auto;
    }
    
    .about h2, .contact h2 {
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 22px;
    }
    
    .hero h2 {
        font-size: 22px;
    }
    
    .hero p {
        font-size: 14px;
    }
    
    .card-content h3 {
        font-size: 18px;
    }
    
    .whatsapp-button {
        font-size: 16px;
        padding: 12px 25px;
    }


.fade-in-up {
    animation: fadeInUp 0.6s forwards;
}

}