:root {
    --font-heading: 'Great Vibes', cursive;
    --font-body: 'Poppins', sans-serif;
    --color-green: #2a9d8f;
    --color-blue: #a9d6e5;
    --color-yellow: #e9c46a;
    --color-dark: #264653;
}

body {
    font-family: var(--font-body);
    background-color: #fdfdfd;
}

/* --- Elementos Decorativos --- */
.floating-leaf {
    position: absolute;
    width: 100px;
    /* Ajuste o tamanho conforme necessário */
    z-index: 1;
    animation: float 15s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(15deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

.splash-bg {
    position: absolute;
    background: url('../../assets/foto4.jpeg') no-repeat center center;
    /* IMAGEM DE MANCHA DE AQUARELA */
    background-size: contain;
    opacity: 0.3;
    z-index: -1;
}

/* --- Tipografia e Títulos --- */
h2.section-title {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    color: var(--color-green);
    font-weight: normal;
}

/* --- Navbar --- */
.navbar {
    transition: background-color 0.3s ease;
}

.navbar-brand {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-dark) !important;
}

/* --- Hero Section com Divisória Curvada --- */
.hero {
    position: relative;
    height: 90vh;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../../assets/foto1.jpeg') no-repeat center center;
    background-size: cover;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero h1 {
    font-family: var(--font-body);
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.wave-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    z-index: 2;
}

.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 120px;
    /* Altura da onda */
}

.wave-divider .shape-fill {
    fill: #fdfdfd;
    /* Cor do fundo da próxima seção */
}

/* --- Seções com Sobreposição --- */
.section-padding {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    /* Importante para conter os elementos flutuantes */
}

.image-collage {
    position: relative;
    height: 450px;
}

.image-collage img {
    position: absolute;
    border-radius: 0.5rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.image-collage img:hover {
    transform: scale(1.05) rotate(2deg);
    z-index: 10;
}

.img-1 {
    width: 60%;
    top: 0;
    left: 0;
}

.img-2 {
    width: 50%;
    bottom: 0;
    right: 0;
}

/* --- Contato --- */
.contact-form {
    background-color: var(--color-yellow);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.quality-icons span {
    display: inline-block;
    margin: 0 10px 10px 0;
    padding: 0.8rem 1.3rem;
    background: #eafbfd;
    color: #24b4b9;
    border-radius: 20px;
    font-weight: 500;
    font-size: 1rem;
    box-shadow: 0 1px 6px #0001;
}