@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Outfit:wght@300;400;500;600&display=swap');

:root {
    --primary-color: #8C2E4A;
    /* Rosa Escuro Sofisticado */
    --primary-light: #F7E9EC;
    /* Rosa Claro / Fundo Suave */
    --accent: #dca0af;
    /* Rosa Médio para detalhes */
    --text-dark: #2A1F22;
    --text-light: #736166;
    --bg-white: #FFFFFF;
    --bg-offwhite: #FCFAFA;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-offwhite);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    color: var(--primary-color);
    line-height: 1.2;
}

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

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 5%;
}

.show-mobile {
    display: none;
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(252, 250, 250, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(140, 46, 74, 0.1);
    transition: var(--transition);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 105px;
}

.logo {
    display: flex;
    align-items: center;
}

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

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

.nav-links a {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
}

.nav-links a.btn-primary {
    color: var(--bg-white) !important;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 1px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

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

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 35px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 0;
    cursor: pointer;
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background-color: #72243b;
    color: var(--bg-white);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 105px;
    position: relative;
    background-color: var(--primary-light);
    overflow: hidden;
}

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

.hero-content {
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.hero-content span.subtitle {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.hero h1 i {
    color: var(--primary-color);
    font-style: italic;
}

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

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

.hero-img-wrapper {
    position: relative;
    height: 80vh;
    display: flex;
    justify-content: flex-end;
}

.hero-img-wrapper img {
    height: 100%;
    width: 85%;
    object-fit: cover;
    border-radius: 200px 200px 0 0;
    box-shadow: 0 30px 60px rgba(140, 46, 74, 0.1);
}

.hero-img-wrapper::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: 5%;
    width: 60%;
    height: 40%;
    border: 1px solid var(--accent);
    border-radius: 200px 200px 0 0;
    z-index: -1;
}

/* Numbers Section */
.stats {
    padding: 80px 0;
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--primary-light);
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    text-align: center;
    flex-wrap: wrap;
    gap: 40px;
}

.stat-item h3 {
    font-size: 3.5rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.stat-item p {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-light);
}

/* Premium Features */
.features {
    padding: 120px 0;
    background-color: var(--bg-offwhite);
}

.features-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.features-header .subtitle {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    display: block;
    margin-bottom: 15px;
}

.features-header h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

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

.feature-card {
    background: var(--bg-white);
    padding: 50px 40px;
    text-align: center;
    border-radius: 4px;
    transition: var(--transition);
    border: 1px solid var(--primary-light);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(140, 46, 74, 0.05);
    border-color: rgba(140, 46, 74, 0.2);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
    font-weight: 300;
}

/* Transformations */
.transformations {
    padding: 120px 0;
    background-color: var(--bg-white);
}

.transformations-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.transformations-header h2 {
    font-size: 3rem;
    max-width: 500px;
}

.gallery-maso {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
    background-color: #000;
    /* Fundo escuro sutil caso imagens não alcancem as bordas num hover etc */
}

.gallery-item:nth-child(even) {
    transform: translateY(40px);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s ease;
}

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

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(42, 31, 34, 0.9), transparent);
    color: var(--bg-white);
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
    transform: translateY(0);
}

.gallery-caption h4 {
    color: var(--bg-white);
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    letter-spacing: 1px;
    margin-bottom: 5px;
    font-weight: 400;
}

/* CTA Section */
.cta {
    padding: 150px 0;
    background-image: linear-gradient(rgba(42, 31, 34, 0.8), rgba(42, 31, 34, 0.85)), url('../img/alana-dias-segurando-espelho-e-se-olhando.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    color: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta h2 {
    color: var(--bg-white);
    font-size: 3.5rem;
    margin-bottom: 25px;
}

.cta p {
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta .btn-outline {
    border-color: var(--bg-white);
    color: var(--bg-white);
}

.cta .btn-outline:hover {
    background-color: var(--bg-white);
    color: var(--primary-color);
}

/* Page Header (Sobre / Contato) */
.page-header {
    padding: 200px 0 100px;
    background-color: var(--primary-light);
    text-align: center;
}

.page-header h1 {
    font-size: 4rem;
    margin-bottom: 15px;
}

.page-header p {
    font-family: 'Outfit', sans-serif;
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section detailed */
.about-detailed {
    padding: 120px 0;
}

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

.about-images {
    position: relative;
}

.about-images img {
    border-radius: 4px;
}

.img-main {
    width: 80%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.img-overlay {
    position: absolute;
    bottom: -40px;
    right: 0;
    width: 50%;
    border: 10px solid var(--bg-offwhite);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-text h2 {
    font-size: 2.8rem;
    margin-bottom: 30px;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-weight: 300;
    font-size: 1.05rem;
}

.blockquote {
    margin: 40px 0;
    padding: 30px;
    background-color: var(--primary-light);
    border-left: 2px solid var(--primary-color);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    color: var(--primary-color);
    font-style: italic;
    line-height: 1.4;
}

/* Contact Page */
.contact-section {
    padding: 120px 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
}

.contact-info-block {
    margin-bottom: 40px;
}

.contact-info-block h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 15px;
}

.contact-info-block p {
    font-size: 1.2rem;
    color: var(--text-dark);
}

.contact-img {
    margin-top: 50px;
    border-radius: 4px;
    width: 100%;
}

.contact-form {
    background: var(--bg-white);
    padding: 60px;
    border: 1px solid var(--primary-light);
    border-radius: 4px;
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.form-control {
    width: 100%;
    padding: 15px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid #e0d5d8;
    color: var(--text-dark);
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-bottom-color: var(--primary-color);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
footer {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 80px 0 30px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 25px;
}

.footer-logo img {
    height: 80px;
    width: auto;
    object-fit: contain;
    /* Adicionando brilho caso seja um png escuro para visibilidade no footer */
    filter: brightness(0) invert(1);
}

.footer-desc {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
    max-width: 400px;
    line-height: 1.8;
}

.footer-col h4 {
    color: var(--bg-white);
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    font-weight: 300;
}

.dev-credit {
    color: var(--accent);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.75rem;
}

.dev-credit:hover {
    color: var(--bg-white);
}

/* Floating WhatsApp */
.wa-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
    z-index: 999;
    transition: var(--transition);
}

.wa-float:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
    color: white;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    .gallery-maso {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .gallery-item:nth-child(even) {
        transform: translateY(0);
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .cta {
        background-attachment: scroll;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 105px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 105px);
        background-color: var(--bg-white);
        flex-direction: column;
        justify-content: center;
        transition: var(--transition);
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-content {
        margin: 0 auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-img-wrapper {
        height: 60vh;
        justify-content: center;
    }

    .hero-img-wrapper img {
        width: 100%;
        border-radius: 20px;
    }

    .hero-img-wrapper::after {
        display: none;
    }

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

    .transformations-header {
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 20px;
    }

    .gallery-maso {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

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

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

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .hide-mobile {
        display: none !important;
    }

    .show-mobile {
        display: block !important;
    }
}

/* Image Lightbox (Tela Cheia) */
.image-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-modal.active {
    display: flex;
    opacity: 1;
}

.image-modal img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.image-modal.active img {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--accent);
    transform: rotate(90deg);
}

@media (max-width: 768px) {
    .modal-close {
        top: 20px;
        right: 20px;
        font-size: 2rem;
    }
}