/* ===== Variáveis de Design ===== */
:root {
    --rosa-escuro: #C26877;
    --rosa-claro: #F6B7C9;
    --cinza: #96989A;
    --cinza-claro: #f0f0f0;
    --branco: #FFFFFF;
    --preto: #1a1a1a;
    --cinza-texto: #555555;
    --fonte-principal: 'Artifika', serif;
    --fonte-corpo: 'Montserrat', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--fonte-corpo);
    line-height: 1.8;
    color: var(--preto);
    background-color: var(--branco);
    overflow-x: hidden;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--fonte-principal);
    color: var(--rosa-escuro);
    font-weight: 400;
}

p {
    color: var(--cinza-texto);
    line-height: 1.8;
}

/* ===== Animações Customizadas ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.animate-on-scroll {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

/* ===== Header & Navigation ===== */
.header {
    background: var(--branco);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    animation: slideInDown 0.6s ease-out;
}

.navbar {
    padding: 15px 0;
}

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

.logo-wrapper {
    flex-shrink: 0;
}

.logo {
    height: 50px;
    transition: var(--transition);
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--preto);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--rosa-escuro);
    transition: var(--transition);
}

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

.nav-link-cta {
    background: linear-gradient(135deg, var(--rosa-escuro), #a15462);
    color: var(--branco);
    padding: 10px 25px;
    border-radius: 25px;
    transition: var(--transition);
}

.nav-link-cta::after {
    display: none;
}

.nav-link-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(194, 104, 119, 0.3);
}

.burger {
    display: none;
    cursor: pointer;
    flex-direction: column;
}

.burger div {
    width: 25px;
    height: 3px;
    background: var(--rosa-escuro);
    margin: 5px;
    transition: var(--transition);
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: linear-gradient(135deg, #fafafa 0%, var(--rosa-claro) 100%);
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(242, 183, 201, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    animation: fadeInLeft 0.8s ease-out;
}

.hero-subtitle {
    display: inline-block;
    color: var(--rosa-escuro);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--preto);
}

.hero-description {
    font-size: 1.1rem;
    color: var(--cinza-texto);
    margin-bottom: 30px;
    line-height: 1.8;
}

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

.btn {
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--rosa-escuro), #a15462);
    color: var(--branco);
    box-shadow: 0 5px 15px rgba(194, 104, 119, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(194, 104, 119, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--rosa-escuro);
    border: 2px solid var(--rosa-escuro);
}

.btn-secondary:hover {
    background: var(--rosa-escuro);
    color: var(--branco);
}

.btn-large {
    padding: 18px 45px;
    font-size: 1.1rem;
}

.hero-image {
    animation: fadeInRight 0.8s ease-out;
}

.image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-wrapper img {
    max-width: 100%;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
    animation: float 4s ease-in-out infinite;
}

/* ===== Section Headers ===== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 15px;
    position: relative;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--cinza-texto);
    margin-bottom: 20px;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--rosa-escuro), var(--rosa-claro));
    margin: 20px auto;
    border-radius: 2px;
}

/* ===== Sobre Section ===== */
.sobre {
    padding: 100px 0;
    background: var(--branco);
}

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

.sobre-image {
    animation: fadeInLeft 0.8s ease-out;
}

.image-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.image-container:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(194, 104, 119, 0.1), rgba(242, 183, 201, 0.1));
    opacity: 0;
    transition: var(--transition);
}

.image-container:hover .image-overlay {
    opacity: 1;
}

.sobre-text {
    animation: fadeInRight 0.8s ease-out;
}

.sobre-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.sobre-text p {
    margin-bottom: 20px;
    font-size: 1rem;
}

.sobre-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--rosa-escuro);
    margin-bottom: 5px;
}

.stat-label {
    display: block;
    color: var(--cinza-texto);
    font-size: 0.9rem;
}

/* ===== Serviços Section ===== */
.servicos {
    padding: 100px 0;
    background: linear-gradient(180deg, #fafafa 0%, var(--branco) 100%);
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.servico-card {
    background: var(--branco);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.servico-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--rosa-escuro), var(--rosa-claro));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

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

.servico-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(194, 104, 119, 0.15);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--rosa-claro), var(--rosa-escuro));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.servico-card:hover .card-icon {
    transform: scale(1.1) rotate(10deg);
}

.card-icon i {
    font-size: 2rem;
    color: var(--branco);
}

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

.servico-card p {
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.card-link {
    color: var(--rosa-escuro);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.card-link:hover {
    gap: 12px;
}

/* ===== Depoimentos Section ===== */
.depoimentos {
    padding: 100px 0;
    background: var(--branco);
}

.feedbacks-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feedback-item {
    background: var(--branco);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.feedback-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(194, 104, 119, 0.15);
}

.feedback-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

.feedback-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

/* ===== CTA Section ===== */
.cta-section {
    background: linear-gradient(135deg, var(--rosa-escuro), #a15462);
    padding: 80px 0;
    text-align: center;
}

.cta-content {
    color: var(--branco);
}

.cta-content h2 {
    color: var(--branco);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* ===== Contato Section ===== */
.contato {
    padding: 100px 0;
    background: linear-gradient(180deg, #fafafa 0%, var(--branco) 100%);
}

.contato-content {
    margin-top: 60px;
}

.contato-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.info-card {
    background: var(--branco);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 1px solid #f0f0f0;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(194, 104, 119, 0.15);
}

.info-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--rosa-claro), var(--rosa-escuro));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.5rem;
    color: var(--branco);
}

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

.contact-link {
    display: inline-block;
    color: var(--rosa-escuro);
    text-decoration: none;
    font-weight: 600;
    margin-top: 15px;
    transition: var(--transition);
}

.contact-link:hover {
    color: #a15462;
    text-decoration: underline;
}

/* ===== Footer ===== */
.footer {
    background: #1a1a1a;
    color: #ccc;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: var(--branco);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer-section p {
    color: #aaa;
    font-size: 0.95rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #aaa;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--rosa-escuro);
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(194, 104, 119, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--rosa-escuro);
    color: var(--branco);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #888;
}

/* ===== Responsividade ===== */
@media screen and (max-width: 768px) {
    .nav-links {
        position: fixed;
        right: 0;
        top: 60px;
        height: calc(100vh - 60px);
        background: var(--branco);
        flex-direction: column;
        width: 100%;
        gap: 0;
        transform: translateX(100%);
        transition: var(--transition);
        padding: 20px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }

    .nav-links.nav-active {
        transform: translateX(0);
    }

    .nav-links li {
        width: 100%;
        padding: 15px 0;
        border-bottom: 1px solid #eee;
    }

    .burger {
        display: flex;
    }

    .burger.toggle .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .burger.toggle .line2 {
        opacity: 0;
    }

    .burger.toggle .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 0;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .sobre-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sobre-stats {
        grid-template-columns: 1fr;
    }

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

    .hero-bg {
        width: 300px;
        height: 300px;
    }
}

@media screen and (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

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

    .servicos-grid,
    .feedbacks-container,
    .contato-info {
        grid-template-columns: 1fr;
    }

    .nav-links {
        width: 100%;
    }
}
