/* VARIÁVEIS DE COR E ESTILO */
:root {
    --bg-color: #fcf9f9;     /* Fundo bem claro, quase branco polar/rosado */
    --text-main: #3d3b3b;    /* Cinza escuro elegante */
    --text-light: #6a6363;   /* Cinza médio/claro */
    --primary-color: #d19fa1; /* Rosa velho / Rosê Gold */
    --secondary-color: #f7e1e1; /* Rosa super bebê para fundos */
    --accent-color: #93a68d; /* Verde sálvia sutil */
    
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
}

/* RESET GLOBAL */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-body);
    font-weight: 300;     /* Espessura fina para os textos */
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .logo {
    font-family: var(--font-heading);
    font-weight: 400;     /* Elegância fina nas serifas */
    color: var(--primary-color);
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* HEADER */
header {
    background-color: rgba(252, 249, 249, 0.95);
    backdrop-filter: blur(5px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 15px rgba(0, 0, 0, 0.02);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 2rem;
    font-weight: 600;
    font-style: italic;
    letter-spacing: 1px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav a {
    font-size: 0.9rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 5px;
    transition: color 0.3s ease;
}

/* Hover delicado nos links */
nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary-color);
    transition: width 0.4s ease;
}

nav a:hover {
    color: var(--primary-color);
}

nav a:hover::after {
    width: 100%;
}

/* HERO SECTION */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
    background: radial-gradient(circle at center, #ffffff 0%, var(--secondary-color) 100%);
    position: relative;
}

.hero-text {
    max-width: 600px;
    z-index: 10;
    animation: fadeIn 1.5s ease-out forwards;
}

.hero-text h2 {
    font-size: 4rem;
    margin-bottom: 20px;
    line-height: 1.1;
    color: var(--primary-color);
}

.hero-text p {
    font-size: 1.1rem;
    font-weight: 200;
    margin-bottom: 40px;
    color: var(--text-light);
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    border: 1px solid var(--primary-color);
    border-radius: 30px;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--primary-color);
    transition: all 0.4s ease;
    background: transparent;
}

.btn:hover {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 10px 20px rgba(209, 159, 161, 0.2);
    transform: translateY(-2px);
}

/* SEÇÕES GENÉRICAS */
.section {
    padding: 100px 0;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    font-size: 1rem;
    font-weight: 200;
    letter-spacing: 1px;
    margin-bottom: 60px;
    color: var(--text-light);
}

/* SOBRE */
.sobre {
    background-color: #ffffff;
}
.sobre-content {
    display: flex;
    align-items: center;
    gap: 50px;
}
.sobre-image {
    flex: 1;
    text-align: center;
}
.avatar-img {
    max-width: 280px;
    width: 100%;
    border-radius: 50%;
    box-shadow: 0 15px 30px rgba(209, 159, 161, 0.2);
    border: 5px solid var(--secondary-color);
    transition: transform 0.4s ease;
}
.avatar-img:hover {
    transform: scale(1.03);
}
.sobre-text {
    flex: 1.5;
}
.sobre-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}
.sobre-text p {
    font-weight: 300;
    font-size: 1.1rem;
    color: var(--text-light);
}

/* ARRANJOS / CARDS */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.card {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(209, 159, 161, 0.15);
}

.card-img {
    height: 250px;
    border-radius: 10px;
    margin-bottom: 20px;
    /* Adicionando transição de hover fofa nas imagens (quando houver a imagem real) */
    transition: transform 0.8s ease;
    overflow: hidden;
}

.card:hover .card-img {
    transform: scale(1.02);
}

.card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.card p {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 200;
}

/* FOOTER */
footer {
    background-color: var(--secondary-color);
    padding: 60px 0 20px;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-bottom: 40px;
    gap: 30px;
}

.footer-content h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.contact-info p, .social p {
    font-size: 0.9rem;
    font-weight: 300;
    margin-bottom: 5px;
}

.copy {
    font-size: 0.8rem;
    color: var(--text-light);
    border-top: 1px solid rgba(209, 159, 161, 0.3);
    padding-top: 20px;
    margin-top: 20px;
}

/* ANIMAÇÕES - CSS PÉTALAS */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.petals-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.petal {
    position: absolute;
    width: 25px;
    height: 25px;
    background: radial-gradient(circle at top left, #ffc7c8, #f5a3a5);
    border-radius: 2px 25px 2px 25px; /* Formato de pétala */
    opacity: 0.4;
    top: -30px;
    animation: fall linear infinite;
}

.petal:nth-child(1) { left: 5%; animation-duration: 12s; animation-delay: 0s; }
.petal:nth-child(2) { left: 15%; animation-duration: 15s; animation-delay: 3s; opacity: 0.6; width: 15px; height: 15px; }
.petal:nth-child(3) { left: 25%; animation-duration: 10s; animation-delay: 5s; }
.petal:nth-child(4) { left: 35%; animation-duration: 18s; animation-delay: 1s; opacity: 0.3; }
.petal:nth-child(5) { left: 45%; animation-duration: 14s; animation-delay: 7s; width: 20px; height: 20px; }
.petal:nth-child(6) { left: 55%; animation-duration: 11s; animation-delay: 2s; opacity: 0.7; }
.petal:nth-child(7) { left: 65%; animation-duration: 16s; animation-delay: 6s; width: 18px; height: 18px; }
.petal:nth-child(8) { left: 75%; animation-duration: 13s; animation-delay: 4s; opacity: 0.5; }
.petal:nth-child(9) { left: 85%; animation-duration: 17s; animation-delay: 8s; width: 22px; height: 22px; }
.petal:nth-child(10) { left: 95%; animation-duration: 12s; animation-delay: 1s; opacity: 0.8; }
.petal:nth-child(11) { left: 10%; animation-duration: 14s; animation-delay: 9s; opacity: 0.3; }
.petal:nth-child(12) { left: 30%; animation-duration: 19s; animation-delay: 11s; width: 15px; height: 15px; }
.petal:nth-child(13) { left: 50%; animation-duration: 11s; animation-delay: 12s; opacity: 0.6; }
.petal:nth-child(14) { left: 70%; animation-duration: 15s; animation-delay: 14s; width: 25px; height: 25px; }
.petal:nth-child(15) { left: 90%; animation-duration: 13s; animation-delay: 10s; opacity: 0.4; }

@keyframes fall {
    0% {
        transform: translateY(-20px) rotate(0deg) translateX(0);
        opacity: 0.5;
    }
    100% {
        transform: translateY(110vh) rotate(360deg) translateX(50px);
        opacity: 0;
    }
}

/* BANNER DE DESENVOLVIMENTO */
.dev-banner {
    background-color: #ffcccc;
    color: #a84849;
    text-align: center;
    padding: 10px;
    font-size: 0.9rem;
    font-weight: 400;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 2000;
    font-family: var(--font-body);
}

header {
    top: 40px; /* Ajuste para não sobrepor o banner */
}

/* RESPONSIVIDADE (MOBILE) */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
        padding: 15px 0;
    }

    nav ul {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-text h2 {
        font-size: 2.5rem;
    }

    .hero-text p {
        font-size: 1rem;
        padding: 0 15px;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .sobre-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .sobre-text h2 {
        font-size: 2rem;
    }

    .avatar-img {
        max-width: 200px;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        text-align: center;
        flex-direction: column;
    }
}
