/* 
  Guia de Design e Identidade Visual: Naiara Nunes Makeup Beauty
  Cores Base: Dourado Premium, Cinza Chumbo, Bege Terracota, Off-White 
*/
@import url("https://fonts.googleapis.com/css2?family=Poiret+One&display=swap");


:root {
    --color-primary: #171717; /* Quase Preto */
    --color-secondary: #c3b2a7; /* Bege Emiko */
    --color-tertiary: #858282; /* Cinza */
    --color-bg: #F9F9F9; /* Off-White */
    --color-white: #FFFFFF;
    
    --font-heading: 'Poiret One', cursive, sans-serif;
    --font-body: 'Poiret One', cursive, sans-serif;
    
    --radius-sm: 16px;
    --radius-md: 24px;
    --radius-lg: 32px;
    --radius-pill: 999px;
    
    --shadow-soft: 0 10px 30px rgba(0,0,0,0.05);
    --shadow-hover: 0 15px 40px rgba(0,0,0,0.1);
    
    --spacing-section: 100px;
}

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

html {
    scroll-behavior: smooth;
}

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

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

ul {
    list-style: none;
}

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

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

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-weight: 600;
}

h1 {
    font-size: clamp(3rem, 5vw, 5rem);
    line-height: 1.1;
    margin-bottom: 24px;
}

h1 strong {
    font-weight: 700;
}

h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 20px;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.hero-italic {
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: 400;
    color: var(--color-tertiary);
    font-size: 0.9em;
}

.hero-gold {
    color: var(--color-secondary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 24px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: var(--radius-pill);
    font-weight: 500;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background-color: var(--color-secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background-color: var(--color-tertiary);
    color: var(--color-white);
}

.btn-secondary:hover {
    background-color: var(--color-primary);
    transform: translateY(-2px);
}

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

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

/* Kinetic Badge Button */
.kinetic-badge {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 140px;
    text-decoration: none;
    color: var(--color-tertiary);
    font-family: "Oswald", sans-serif;
    border-radius: 50%;
    cursor: pointer;
    margin-top: 20px;
}

.badge-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 100%;
    height: 100%;
    background-color: var(--color-tertiary);
    border-radius: 50%;
    transition: transform 0.6s cubic-bezier(0.85, 0, 0.15, 1);
    z-index: 1;
}

.kinetic-badge:hover .badge-bg {
    transform: translate(-50%, -50%) scale(1);
}

.badge-text {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    animation: spinSlow 10s linear infinite;
    transition: color 0.4s ease;
}

.badge-text svg {
    overflow: visible;
}

.kinetic-badge:hover .badge-text {
    color: var(--color-white);
    animation: spinSlow 3s linear infinite;
}

.badge-icon {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.6s cubic-bezier(0.85, 0, 0.15, 1);
    color: var(--color-tertiary);
    font-size: 1.5rem;
}

.kinetic-badge:hover .badge-icon {
    transform: rotate(45deg) scale(1.2);
    color: var(--color-white);
}

@keyframes spinSlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Header */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s ease;
    padding: 20px 0;
}

#header.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 12px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

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

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

.logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

#header.scrolled .logo img {
    height: 40px;
    width: auto;
}

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

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

.nav-links a {
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--color-secondary);
    transition: width 0.3s;
}

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

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(180deg, #E6DCD7 0%, #F9F9F9 100%);
    padding: calc(var(--spacing-section) + 60px) 0 var(--spacing-section);
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

.hero-content {
    max-width: 550px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    width: 100%;
    aspect-ratio: 4/5;
}

.floating-badge {
    position: absolute;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(8px);
    padding: 12px 24px;
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-hover);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: float 4s ease-in-out infinite;
}

.floating-badge i {
    color: var(--color-secondary);
}

.badge-1 {
    bottom: 80px;
    left: -20px;
    animation-delay: 0s;
}

.badge-2 {
    bottom: 20px;
    right: -20px;
    animation-delay: 2s;
}

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

/* Sections Global */
section {
    padding: var(--spacing-section) 0;
}

.section-tag {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-tertiary);
    display: block;
    margin-bottom: 16px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-header p, .reviews-header p {
    font-weight: 600;
}

/* About Section */
.hero-content p, .about-content p {
    font-weight: 600;
}

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

.about-images {
    position: relative;
}

.img-main {
    border-radius: var(--radius-lg);
    width: 80%;
    margin-left: auto;
    aspect-ratio: 4/5;
    object-fit: cover;
    object-position: center 20%;
    position: relative;
}

.about-images img {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.about-images img:hover {
    transform: scale(1.02);
    z-index: 10;
}

.img-secondary {
    position: absolute;
    bottom: -110px;
    left: -30px;
    width: 55%;
    border-radius: var(--radius-md);
    border: 10px solid var(--color-bg);
    box-shadow: var(--shadow-soft);
}

.img-tertiary {
    position: absolute;
    bottom: -110px;
    right: -30px;
    width: 55%;
    border-radius: var(--radius-md);
    border: 10px solid var(--color-bg);
    box-shadow: var(--shadow-soft);
    object-fit: cover;
    aspect-ratio: 4/3;
}

/* Services */
.services {
    background-color: var(--color-primary); /* Dark style like cards */
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: "";
    height: 300px;
    width: 300px;
    position: absolute;
    top: -10%;
    left: -5%;
    border-radius: 50%;
    border: 60px solid rgba(212, 175, 55, 0.15); /* Dourado */
    transition: all 1.5s ease;
    filter: blur(2rem);
    pointer-events: none;
    z-index: 0;
}

.services:hover::before {
    width: 400px;
    height: 400px;
    top: -5%;
    left: 20%;
    filter: blur(0rem);
}

.services .container {
    position: relative;
    z-index: 1;
}

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

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

.services .btn-outline:hover {
    background-color: var(--color-white);
    color: var(--color-tertiary);
}

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

.service-card {
    width: 100%;
    min-height: 250px;
    border-radius: 15px;
    background: var(--color-primary);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.service-card::before {
    content: "";
    height: 100px;
    width: 100px;
    position: absolute;
    top: -40%;
    left: -20%;
    border-radius: 50%;
    border: 35px solid rgba(212, 175, 55, 0.2); /* Dourado */
    transition: all .8s ease;
    filter: blur(.5rem);
    pointer-events: none;
    z-index: 1;
}

.service-card:hover::before {
    width: 140px;
    height: 140px;
    top: -30%;
    left: 50%;
    filter: blur(0rem);
}

.card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: brightness(0.4);
    transition: filter 0.5s ease;
}

.service-card:hover .card-bg {
    filter: brightness(0.2);
}

.service-card .text {
    flex-grow: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    color: var(--color-white);
    font-weight: 700;
    font-size: 1.2em;
    z-index: 2;
}

.service-card .subtitle {
    font-size: 0.75em;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 8px;
    font-family: var(--font-body);
}

.service-card .icons {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0 20px 20px 20px;
    z-index: 2;
}

.service-card .btn {
    border: none;
    width: auto;
    padding: 0 16px;
    height: 35px;
    border-radius: 8px;
    background-color: rgba(212, 175, 55, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s;
    color: var(--color-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9em;
}

.service-card .btn:hover {
    background-color: rgba(212, 175, 55, 0.8);
}

.service-card .svg-icon {
    width: 20px;
    height: 20px;
    stroke: var(--color-secondary);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Reviews */
.reviews {
    background-color: var(--color-white);
    padding-bottom: 0;
    margin-bottom: 50px; /* Separar seção seguinte */
    position: relative;
    z-index: 1;
}


.reviews-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

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

.review-card {
    background: var(--color-bg);
    padding: 40px;
    border-radius: var(--radius-md);
    position: relative;
}

.review-card::before {
    content: '"';
    font-family: var(--font-heading);
    font-size: 6rem;
    color: var(--color-tertiary);
    opacity: 0.2;
    position: absolute;
    top: 10px;
    left: 20px;
}

.review-text {
    font-style: italic;
    position: relative;
    z-index: 1;
}

.review-author {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 24px;
}

.stars {
    color: var(--color-secondary);
    font-size: 0.9rem;
}

/* Location */
.location {
    position: relative;
    z-index: 2;
    background-color: var(--color-bg);
}

.location-content {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 500px;
    box-shadow: var(--shadow-md);
}

.map-container {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.map-container iframe {
    width: calc(100% + 400px);
    margin-left: -400px;
    height: 100%;
    object-fit: cover;
}

.location-details {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(44, 44, 44, 0.95);
    backdrop-filter: blur(10px);
    color: var(--color-white);
    padding: 40px;
    border-radius: var(--radius-md);
    width: 380px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--color-secondary);
    margin-top: 4px;
}

.info-item h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--color-secondary);
    font-family: var(--font-body);
    font-weight: 600;
}

.info-item p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Footer */
.footer {
    background-color: var(--color-primary);
    color: rgba(255,255,255,0.7);
    padding: 80px 0 20px;
}

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

.logo-footer img {
    max-width: 200px;
    height: auto;
    margin-bottom: 24px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--color-secondary);
}

.footer-links h4 {
    color: var(--color-white);
    margin-bottom: 24px;
    font-family: var(--font-body);
}

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

.footer-links a {
    font-weight: 600;
}

.footer-links a:hover {
    color: var(--color-secondary);
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-container, .about-container {
        grid-template-columns: 1fr;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-image img {
        max-height: 450px;
        object-fit: cover;
    }
    
    .badge-1 { left: 10px; }
    .badge-2 { right: 10px; }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 850px) {
    .location-content {
        height: auto;
        display: flex;
        flex-direction: column;
    }
    
    .map-container {
        position: relative;
        height: 350px;
    }
    
    .map-container iframe {
        width: 100%;
        margin-left: 0;
    }
    
    .location-details {
        position: relative;
        right: 0;
        top: 0;
        transform: none;
        width: 100%;
        border-radius: 0 0 var(--radius-lg) var(--radius-lg);
        border: none;
        box-shadow: none;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--color-white);
        flex-direction: column;
        padding: 24px;
        box-shadow: var(--shadow-soft);
        text-align: center;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
}

/* --- Gallery Section --- */
.gallery-section {
    padding: var(--spacing-section) 0;
    background-color: var(--color-bg);
}

.gallery-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}
.gallery-section .section-header h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--color-primary);
    margin-bottom: 15px;
}
.gallery-section .section-header p {
    color: var(--color-tertiary);
    font-size: 1.1rem;
}

.gallery-wrapper {
   padding: 20px 0;
   width: 100%;
}

.grid {
	display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-flow: row dense;
	gap: 15px;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.card { 
    background-size: cover; 
    background-position: center center;
    border-radius: var(--radius-sm);
    transition: transform 0.3s ease;
    cursor: pointer;
    min-width: 0; 
    min-height: 0;
    position: relative;
}

.card video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.ratio-4-3 {
    aspect-ratio: 4/3;
}

.ratio-vertical {
    grid-row: span 2;
    height: 100%;
}

.card:hover {
    transform: scale(1.03);
    z-index: 10;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
}

.lightbox.show {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    animation: scaleIn 0.3s ease;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    z-index: 10000;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: var(--color-primary);
    text-decoration: none;
    cursor: pointer;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* Legal Disclaimer */
.legal-disclaimer {
    color: var(--color-secondary); /* Cor em destaque */
    font-size: 0.85em;
    margin-top: 10px;
    font-style: italic;
    opacity: 0.9;
    text-align: center;
}
