:root {
    --primary-color: #E9C46A;
    /* Gold/Yellow */
    --primary-hover: #D4B05B;
    --pink-color: #FF69B4;
    /* Rosa Primícias */
    --pink-hover: #FF1493;
    --pink-light: #FFB6D9;
    --accent-color: #264653;
    /* Dark Blue */
    --accent-hover: #1D3540;
    --text-color: #264653;
    --bg-color: #FFFFFF;
    --bg-light: #FFF5F8;
    --bg-gradient: linear-gradient(135deg, #FFF5F8 0%, #F8F9FA 100%);
    --white: #FFFFFF;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

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

/* Animações */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes ripple {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.slide-in-left {
    animation: slideInLeft 0.8s ease-out forwards;
}

.slide-in-right {
    animation: slideInRight 0.8s ease-out forwards;
}

/* Botões */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: none;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--pink-color) 0%, var(--primary-color) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 105, 180, 0.4);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--pink-color);
    border: 2px solid var(--pink-color);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--pink-color) 0%, var(--pink-hover) 100%);
    color: var(--white);
    border-color: var(--pink-hover);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.4);
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
}

header.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-lg);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--accent-color);
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    height: 40px;
    width: auto;
    transition: var(--transition);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    color: var(--accent-color);
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--pink-color), var(--primary-color));
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--pink-color);
}

.nav-links .btn-secondary:hover {
    color: var(--white);
    background: linear-gradient(135deg, var(--pink-color) 0%, var(--pink-hover) 100%);
    border-color: transparent;
}

.mobile-menu-icon {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-icon span {
    width: 25px;
    height: 3px;
    background-color: var(--accent-color);
    border-radius: 2px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    margin-top: 70px;
    /* Header height */
    padding: 120px 0;
    background: var(--bg-gradient);
    text-align: center;
    position: relative;
    overflow: hidden;
    background-image: url('https://images.unsplash.com/photo-1503454537195-1dcabb73ffb9?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
}

/* Camada de opacidade sobre a imagem de fundo */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 245, 248, 0.233);
    /* Opacidade sobre a imagem */
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(233, 196, 106, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 6rem;
    background: linear-gradient(90deg, #FF69B4, #E9C46A, #4CAF50, #2196F3, #E9C46A, #FF69B4);
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    animation: fadeIn 1s ease-out, shine 8s linear infinite;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.hero h2 {
    font-size: 1.5rem;
    color: white;
    font-weight: 500;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    animation: fadeIn 1.2s ease-out;
}

/* Gallery Section */
.gallery {
    padding: 80px 0;
    background: linear-gradient(135deg, #d4bbd8 0%, #E1F5FE 100%);
    /* Roxo/rosa claro → Azul claro */
    position: relative;
    overflow: hidden;
}

.gallery::before {
    content: '👶';
    position: absolute;
    font-size: 80px;
    opacity: 0.35;
    top: 10%;
    left: 5%;
    animation: float 8s ease-in-out infinite;
    z-index: 0;
}

.gallery::after {
    content: '🧸';
    position: absolute;
    font-size: 70px;
    opacity: 0.35;
    bottom: 15%;
    right: 8%;
    animation: float 10s ease-in-out infinite;
    animation-delay: 2s;
    z-index: 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    aspect-ratio: 3/4;
    /* Aumentado para melhor acomodar as imagens */
    min-height: 400px;
    /* Altura mínima garantida */
    background: var(--white);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ocupa todo o card mantendo proporção */
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(255, 105, 180, 0.9), transparent);
    padding: 20px;
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    color: var(--white);
    margin: 0;
    font-size: 1.2rem;
}

/* Sections */
.section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Decoração para seção Sobre (About) */
.section#sobre::before {
    content: '💝';
    position: absolute;
    font-size: 90px;
    opacity: 0.35;
    top: 15%;
    right: 5%;
    animation: pulse 3s ease-in-out infinite;
    z-index: 0;
}

.section#sobre::after {
    content: '⭐';
    position: absolute;
    font-size: 60px;
    opacity: 0.35;
    bottom: 20%;
    left: 3%;
    animation: float 7s ease-in-out infinite;
    z-index: 0;
}

/* Decoração para seção Produtos */
.section#produtos::before {
    content: '👕';
    position: absolute;
    font-size: 85px;
    opacity: 0.35;
    top: 10%;
    left: 8%;
    animation: float 9s ease-in-out infinite;
    z-index: 0;
}

.section#produtos::after {
    content: '👗';
    position: absolute;
    font-size: 75px;
    opacity: 0.35;
    bottom: 10%;
    right: 6%;
    animation: pulse 4s ease-in-out infinite;
    z-index: 0;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--pink-color), var(--primary-color));
    border-radius: 2px;
    margin-bottom: 20px;
    /* Espaço adicional abaixo do decorativo */
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #666;
}

.bg-light {
    background: var(--bg-gradient);
}

/* Promo Banner */
.promo-banner {
    background: linear-gradient(135deg, var(--pink-color) 0%, var(--pink-hover) 100%);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.promo-banner::before {
    content: '✨';
    position: absolute;
    font-size: 100px;
    opacity: 0.6;
    top: -20px;
    left: 10%;
    animation: pulse 2s ease-in-out infinite;
}

.promo-banner::after {
    content: '🎀';
    position: absolute;
    font-size: 100px;
    opacity: 0.6;
    bottom: -20px;
    right: 10%;
    animation: pulse 2.5s ease-in-out infinite;
}

.promo-content {
    position: relative;
    z-index: 1;
}

.promo-banner h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.promo-banner p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.about-text {
    animation: slideInLeft 0.8s ease-out;
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.mission-values {
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation: slideInRight 0.8s ease-out;
}

.card {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 4px solid transparent;
}

.card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
    border-left-color: var(--pink-color);
}

.card h3 {
    color: var(--pink-color);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.card ul {
    list-style: none;
    padding-left: 0;
}

.card ul li {
    padding: 5px 0;
    padding-left: 25px;
    position: relative;
}

.card ul li::before {
    content: '💖';
    position: absolute;
    left: 0;
}

/* Products Section */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.product-card {
    background: var(--white);
    padding: 35px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--pink-color), var(--primary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--pink-light);
}

.product-card h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.product-card p {
    color: #666;
    line-height: 1.6;
}

.product-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

/* Contact Section */
.section#contato::after {
    content: '💌';
    position: absolute;
    font-size: 65px;
    opacity: 0.4;
    bottom: 15%;
    right: 8%;
    animation: float 8s ease-in-out infinite;
    z-index: 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.contact-info {
    animation: slideInLeft 0.8s ease-out;
}

.info-item {
    margin-bottom: 2rem;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 10px;
    transition: var(--transition);
}

.info-item:hover {
    transform: translateX(10px);
    background: var(--white);
    box-shadow: var(--shadow);
}

.info-item h3 {
    color: var(--pink-color);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.social-links a {
    color: var(--white);
    font-weight: 600;
    padding: 8px 16px;
    background: linear-gradient(135deg, var(--pink-color), var(--primary-color));
    border-radius: 20px;
    transition: var(--transition);
}

.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.3);
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    animation: slideInRight 0.8s ease-out;
}

.map-container iframe {
    border-radius: 0;
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: transparent;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
    animation: ripple 2s infinite;
}

.whatsapp-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.whatsapp-float:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    animation: none;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        padding: 20px;
        box-shadow: var(--shadow);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-icon {
        display: flex;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .hero h2 {
        font-size: 1.2rem;
    }

    .about-grid,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

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

    .section-title::after {
        bottom: -20px;
        /* Afasta mais a linha do título em mobile */
    }

    .promo-banner h2 {
        font-size: 2rem;
    }
}

/* Parallax Dividers - Tema Infantil */
.parallax-divider {
    height: 150px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom, var(--bg-light), var(--white));
}

.parallax-divider.reverse {
    background: linear-gradient(to bottom, var(--white), var(--bg-light));
}

.parallax-stars {
    background-image:
        radial-gradient(2px 2px at 20% 30%, var(--primary-color), transparent),
        radial-gradient(2px 2px at 60% 70%, var(--pink-color), transparent),
        radial-gradient(1px 1px at 50% 50%, var(--primary-color), transparent),
        radial-gradient(1px 1px at 80% 10%, var(--pink-light), transparent),
        radial-gradient(2px 2px at 90% 60%, var(--primary-color), transparent),
        radial-gradient(1px 1px at 33% 80%, var(--pink-color), transparent);
    background-size: 200% 200%;
    background-position: 0% 0%;
    animation: parallaxMove 20s linear infinite;
}

.parallax-hearts {
    position: relative;
}

.parallax-hearts::before,
.parallax-hearts::after {
    content: '💖';
    position: absolute;
    font-size: 30px;
    opacity: 0.15;
    animation: floatHeart 15s ease-in-out infinite;
}

.parallax-hearts::before {
    left: 10%;
    top: 20%;
    animation-delay: 0s;
}

.parallax-hearts::after {
    right: 15%;
    top: 60%;
    animation-delay: 7s;
}

.parallax-clouds {
    position: relative;
}

.parallax-clouds::before,
.parallax-clouds::after {
    content: '☁️';
    position: absolute;
    font-size: 50px;
    opacity: 0.2;
    animation: floatCloud 25s linear infinite;
}

.parallax-clouds::before {
    left: -50px;
    top: 30%;
}

.parallax-clouds::after {
    right: -50px;
    top: 60%;
    animation-delay: 12s;
}

.parallax-toys {
    position: relative;
}

.parallax-toys::before {
    content: '🎈';
    position: absolute;
    left: 20%;
    top: 40%;
    font-size: 35px;
    opacity: 0.15;
    animation: floatToy 10s ease-in-out infinite;
}

.parallax-toys::after {
    content: '🌟';
    position: absolute;
    right: 25%;
    top: 20%;
    font-size: 30px;
    opacity: 0.15;
    animation: floatToy 12s ease-in-out infinite;
    animation-delay: 5s;
}

@keyframes parallaxMove {
    0% {
        background-position: 0% 0%;
    }

    100% {
        background-position: 100% 100%;
    }
}

@keyframes floatHeart {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    25% {
        transform: translateY(-20px) rotate(5deg);
    }

    50% {
        transform: translateY(-10px) rotate(-5deg);
    }

    75% {
        transform: translateY(-15px) rotate(3deg);
    }
}

@keyframes floatCloud {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(100vw + 100px));
    }
}

@keyframes floatToy {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-25px) rotate(10deg);
    }
}

@keyframes shine {
    to {
        background-position: 300% center;
    }
}