/* Geral */
body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #f9f9f9;
    color: #333;
    scroll-behavior: smooth;
}

/* Header */
.header {
    background-color: #ff2e63;
    padding: 20px 0;
    color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.logo-container h1 {
    font-size: 2.5rem;
    margin: 0;
    letter-spacing: 2px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
    margin: 0;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: color 0.3s;
}

nav a:hover {
    color: #81d8d0;
}

.whatsapp-button {
    background-color: #81d8d0;
    color: white;
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.whatsapp-button:hover {
    background-color: #ff2e63;
}

.whatsapp-icon {
    margin-right: 8px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #ff2e63 0%, #81d8d0 100%);
    color: white;
    padding: 80px 20px;
}

.hero-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    gap: 40px;
}

.hero-text {
    flex: 1 1 500px;
    animation: fadeInLeft 1s ease-in-out;
}

.hero-text h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.5;
}

.cta-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: white;
    color: #ff2e63;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
}

.cta-button:hover {
    background-color: #ff2e63;
    color: white;
}

.hero-image {
    flex: 1 1 400px;
    text-align: center;
    animation: fadeInRight 1s ease-in-out;
}

.hero-image img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* Sessões */
.sobre {
    background: linear-gradient(to bottom, #81d8d0, #a0e6d8);
    color: #034d40; /* verde escuro para contraste */
    padding: 60px 20px;
    text-align: center;
    font-size: 1.1rem;
}

.sobre-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.sobre-container h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
}

.sobre-container p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.sobre-container ul {
    list-style: none;
    padding-left: 0;
}

.sobre-container ul li {
    font-size: 1.15rem;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    color: #034d40;
}

.sobre-container ul li::before {
    content: "✔️";
    position: absolute;
    left: 0;
    top: 0;
}

/* Fotos */
.fotos {
    background-color: #81d8d0;
    color: white;
    padding: 60px 20px;
    text-align: center;
}

/* Localização */
.localizacao {
    background-color: #f2f2f2;
    padding: 60px 20px;
    text-align: center;
}

/* Galeria */
.galeria {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.galeria img {
    max-width: 100%;
    width: 300px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s;
}

.galeria img:hover {
    transform: scale(1.05);
}

/* Mapa */
.mapa iframe {
    width: 100%;
    border: none;
    border-radius: 10px;
}

/* Footer */
footer {
    background-color: #ff2e63;
    color: white;
    text-align: center;
    padding: 20px;
}

/* Botão WhatsApp fixo */
.whatsapp-fixed {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    background-color: #25d366;
    padding: 10px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.whatsapp-fixed:hover {
    transform: scale(1.1);
}

.whatsapp-fixed img {
    width: 40px;
    height: 40px;
}

/* Animações */
@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}
.sobre {
  background: linear-gradient(to bottom, #81d8d0, #a0e6d8);
  color: #034d40;
  padding: 60px 20px;
  text-align: center;
  font-size: 1.1rem;
  border: 5px solid #034d40; /* só pra você ver se está pegando */
}
