:root {
    --color-primary: #F2ACB2;
    --color-primary-light: #fdf2f4;
    --color-action: #D8F2DE;
    --color-title: #F2BA52;
    --color-accent: #F2CC85;
    --color-accent-light: #fef7e8;
    --color-bg-soft: #F2F2F2;
    --color-white: #ffffff;
    --color-text-body: #555555;
    --color-light-gray: #f9f9f9;

    --header-height: 80px;
    --container-width: 1200px;
    --border-radius: 12px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

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

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(60px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.85); }
    to   { opacity: 1; transform: scale(1); }
}

.hero-content h4 {
    animation: slideInLeft 0.7s ease both;
}

.hero-content h1 {
    animation: slideInLeft 0.7s ease both;
    animation-delay: 0.1s;
}

.hero-content p {
    animation: slideInLeft 0.7s ease both;
    animation-delay: 0.2s;
}

.hero-content .hero-buttons {
    animation: slideInLeft 0.7s ease both;
    animation-delay: 0.3s;
}

.hero-image-container {
    animation: slideInRight 0.7s ease both;
    animation-delay: 0.15s;
}

section {
    animation: slideInLeft 0.8s ease both;
}

#sobre { animation-delay: 0.1s; }
#servicos { animation-delay: 0.2s; }
#recursos { animation-delay: 0.3s; }

.about-content h4,
.about-content h2,
.about-content p,
.about-content ul,
.service-card,
.recurso-card {
    opacity: 0;
    animation: slideInLeft 0.6s ease forwards;
}

.about-content h4   { animation-delay: 0.1s; }
.about-content h2   { animation-delay: 0.2s; }
.about-content p    { animation-delay: 0.3s; }
.about-content ul   { animation-delay: 0.4s; }

.service-card:nth-child(1) { animation-delay: 0.05s; }
.service-card:nth-child(2) { animation-delay: 0.1s; }
.service-card:nth-child(3) { animation-delay: 0.15s; }
.service-card:nth-child(4) { animation-delay: 0.2s; }
.service-card:nth-child(5) { animation-delay: 0.25s; }
.service-card:nth-child(6) { animation-delay: 0.3s; }

.recurso-card:nth-child(1) { animation-delay: 0.05s; }
.recurso-card:nth-child(2) { animation-delay: 0.1s; }
.recurso-card:nth-child(3) { animation-delay: 0.15s; }

.about-image img {
    opacity: 0;
    animation: scaleIn 0.7s ease forwards;
    animation-delay: 0.15s;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--color-text-body);
    line-height: 1.6;
    background-color: var(--color-light-gray);
    padding-top: var(--header-height);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    color: var(--color-title);
    margin-bottom: 1rem;
    font-weight: 600;
}

a { text-decoration: none; transition: 0.3s; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; height: auto; }

header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: fixed;
    top: 0; left: 0; width: 100%;
    min-height: var(--header-height);
    z-index: 1000;
    display: flex;
    align-items: center;
}

.navbar {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.2rem;
    color: #333;
    z-index: 1100;
}

.logo img {
    height: 80px;
    width: auto;
    max-width: 320px;
    object-fit: contain;
}

.logo span {
    color: var(--color-title);
}

.menu-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
}

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

.nav-links a {
    color: #555;
    font-weight: 600;
    font-size: 0.95rem;
    white-space: nowrap;
}

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

.auth-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.hamburger { display: none; }

@media (max-width: 992px) {

    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        z-index: 1100;
    }
    .hamburger span {
        width: 25px; height: 3px; background-color: #333; transition: 0.3s;
    }

    .menu-wrapper {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background: #fff;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 40px;
        box-shadow: 0 10px 10px rgba(0,0,0,0.1);
        transform: translateX(100%);
        transition: transform 0.4s ease-in-out;
        gap: 30px;
    }

    .menu-wrapper.active {
        transform: translateX(0);
    }

    .nav-links {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }
    .nav-links a { font-size: 1.2rem; }

    .auth-buttons {
        flex-direction: column;
        width: 80%;
    }
    .mobile-btn { width: 100%; text-align: center; justify-content: center; }

    .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

    .navbar { justify-content: center; }
    .hamburger { position: absolute; right: 20px; }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    font-size: 0.95rem;
}
.btn-primary {
    background-color: var(--color-action);
    color: #3a5a4a;
}
.btn-primary:hover {
    background-color: #b8e0c2;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(216, 242, 222, 0.5);
}
.btn-outline {
    border-color: var(--color-title);
    color: var(--color-title);
    background: transparent;
}
.btn-outline:hover {
    background-color: var(--color-title);
    color: #fff;
}
.btn-text {
    color: var(--color-accent);
    font-weight: 700;
    font-size: 0.9rem;
}

.about-content .btn-text {
    font-size: 1.1rem;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.hero {
    background: linear-gradient(135deg, var(--color-white) 50%, var(--color-bg-soft) 100%);
    padding: 60px 0;
    min-height: calc(90vh - var(--header-height));
    display: flex; align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-content h4 {
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
}

.hero-content h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    color: var(--color-title);
}

.hero-content p {
    font-size: 1.1rem;
    margin: 20px 0 30px;
    color: #666;
}

.hero-buttons { display: flex; gap: 15px; flex-wrap: wrap; }

.hero-location {
    margin-top: 20px;
    font-size: 0.95rem;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.hero-location i {
    font-size: 1rem;
}

.hero-image-container {
    background-color: var(--color-primary);
    border-radius: 20px;
    overflow: hidden;
    height: 450px;
    position: relative;
    box-shadow: 20px 20px 0px rgba(242, 172, 178, 0.3);
}

.hero-carousel {
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.carousel-slide.active {
    opacity: 1;
}

@media (max-width: 992px) {
    .hero-content h1 { font-size: 2.2rem; }
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-image-container { height: 350px; width: 100%; max-width: 350px; margin: 0 auto; }
    .hero-buttons { justify-content: center; }
}

.section-padding { padding: 80px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-image img { border-radius: var(--border-radius); box-shadow: 20px 20px 0 var(--color-primary); width: 100%; }

@media (max-width: 768px) {
    .about-grid { grid-template-columns: 1fr; }
    .about-content .btn-text { font-size: 1rem; }
    .about-image { order: -1; width: 80%; margin: 0 auto 30px; }
}

.photo-divider {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.photo-divider-inner {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    padding: 80px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.photo-divider-inner img {
    max-width: 40%;
    height: auto;
    display: block;
}

.pill-tag {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.4rem;
    padding: 14px 28px;
    border-radius: 30px;
    white-space: nowrap;
}

.pill-amor {
    background: var(--color-primary-light);
    color: var(--color-primary);
    border: 1.5px solid var(--color-primary);
}

.pill-respeito {
    background: var(--color-accent-light);
    color: var(--color-accent);
    border: 1.5px solid var(--color-accent);
}

@media (max-width: 768px) {
    .photo-divider-inner {
        flex-direction: column;
        gap: 20px;
        padding: 50px 20px;
    }
    .photo-divider-inner img {
        max-width: 60%;
    }
}

.location-section {
    background: linear-gradient(135deg, var(--color-primary-light) 0%, #fff 50%, var(--color-accent-light) 100%);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.location-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 24px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    border: 1.5px solid rgba(242, 172, 178, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(242, 172, 178, 0.15);
    border-color: var(--color-primary);
}

.location-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.6rem;
    color: #fff;
    box-shadow: 0 6px 16px rgba(242, 172, 178, 0.35);
}

.location-card h3 {
    font-size: 1.3rem;
    margin-bottom: 4px;
    color: var(--color-title);
}

.location-card p {
    font-size: 0.95rem;
    color: var(--color-text-body);
    margin-bottom: 16px;
}

.location-badge {
    display: inline-block;
    padding: 5px 18px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    background: var(--color-action);
    color: #3a5a4a;
}

@media (max-width: 768px) {
    .location-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .location-card {
        padding: 30px 20px;
    }
}

.about-list {
    margin-top: 10px;
}

.about-list li {
    padding: 6px 0;
    font-size: 0.95rem;
    color: var(--color-text-body);
}

.about-list li::before {
    content: "\2713\0020";
    color: var(--color-action);
    font-weight: 700;
}

.whatsapp-float {
    position: fixed; bottom: 30px; right: 30px; background-color: #25d366; color: #fff; width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 12px rgba(0,0,0,0.3); z-index: 2000;
}

.social-icons {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.social-icons a {
    color: #555;
    font-size: 1.8rem;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.social-icons a:hover { transform: translateY(-3px); }
.social-icons a.insta:hover { color: #E1306C; }
.social-icons a.wpp:hover { color: #25d366; }

footer .social-icons a { color: rgba(255,255,255,0.8); }
footer .social-icons a:hover { color: #fff; }

.services-section {
    background-color: var(--color-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.service-card {
    border-radius: var(--border-radius);
    padding: 28px 24px 20px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border-top: 4px solid var(--color-primary);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:nth-child(odd) {
    background: var(--color-primary-light);
    border-top-color: var(--color-primary);
}

.service-card:nth-child(even) {
    background: var(--color-accent-light);
    border-top-color: var(--color-accent);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.12);
}

.service-card-header {
    margin-bottom: 16px;
}

.service-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #fff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.08);
}

.service-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.92rem;
    line-height: 1.6;
    flex: 1;
    margin-bottom: 20px;
}

.service-card-footer {
    text-align: right;
}

.service-card .btn-service {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    border-radius: 30px;
    background: transparent;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.88rem;
    font-family: 'Inter', sans-serif;
    border: 2px solid var(--color-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.service-card .btn-service:hover {
    background: var(--color-primary);
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.recursos-section {
    background-color: var(--color-bg-soft);
}

.recursos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 350px));
    gap: 30px;
    margin-top: 40px;
    justify-content: center;
}

.recurso-card {
    background: var(--color-white);
    border-radius: var(--border-radius);
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
    transition: 0.3s;
}

.recurso-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-primary);
}

.recurso-card .icon {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 15px;
}

.recurso-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.recurso-card p {
    font-size: 0.9rem;
    color: var(--color-text-body);
}

.recurso-card .card-image {
    width: 100%;
    height: 220px;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 15px;
    background-color: #f4f4f4;
}

.recurso-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(3px);
}

.recurso-card .price {
    display: inline-block;
    margin-top: 10px;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--color-primary);
}

.recurso-card .btn-buy {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    border-radius: 30px;
    background-color: var(--color-action);
    color: #3a5a4a;
    font-weight: 600;
    font-size: 0.85rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 12px;
}

.recurso-card .btn-buy:hover {
    background-color: #b8e0c2;
    transform: translateY(-2px);
}

footer {
    background-color: var(--color-accent);
    color: white;
    padding: 60px 0;
    margin-top: 50px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('logos/LOGO FUNDO BRANCO.webp') center / cover no-repeat;
    opacity: 0.08;
    pointer-events: none;
}

footer h3 {
    color: white;
    font-size: 1.3rem;
}

footer p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.text-center { text-align: center; }
