/* 
   Studio Juliana Hussin - Stylesheet
   Visual: Grande Site de Beleza (Premium & Moderno)
*/

:root {
    --primary: #c5a059; /* Ouro sofisticado */
    --primary-dark: #a68342;
    --primary-light: #e0c9a6;
    --accent: #1a1a1a; /* Preto elegante */
    --text-main: #333333;
    --text-muted: #666666;
    --bg-light: #faf9f6;
    --white: #ffffff;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

/* Navbar */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
}

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

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

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    color: var(--accent);
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background-color: var(--primary);
    transition: var(--transition);
}

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

.nav-cta {
    background-color: var(--primary);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.nav-cta:hover {
    background-color: var(--accent);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    background-image: url('new-hero-bg.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    padding-top: 80px;
}

.hero1 {
    position: relative;
    height: 100vh;
    min-height: 700px;
    background-image: url('depilacao.jpeg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    padding-top: 80px;
}

.hero1 h1 {
    font-size: clamp(40px, 8vw, 72px);
    margin-bottom: 24px;
    text-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.hero1 p {
    font-size: clamp(16px, 2vw, 20px);
    margin-bottom: 40px;
    opacity: 0.9;
    font-weight: 300;
}

.hero2 {
    position: relative;
    height: 100vh;
    min-height: 700px;
    background-image: url('sobrancelha.jpeg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    padding-top: 80px;
}

.hero2 h1 {
    font-size: clamp(40px, 8vw, 72px);
    margin-bottom: 24px;
    text-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.hero2 p {
    font-size: clamp(16px, 2vw, 20px);
    margin-bottom: 40px;
    opacity: 0.9;
    font-weight: 300;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.hero-tag {
    display: inline-block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 24px;
    font-weight: 600;
    color: var(--primary-light);
}

.hero h1 {
    font-size: clamp(40px, 8vw, 72px);
    margin-bottom: 24px;
    text-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.hero p {
    font-size: clamp(16px, 2vw, 20px);
    margin-bottom: 40px;
    opacity: 0.9;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    display: inline-block;
}

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

.cta-button.secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.cta-button.primary:hover {
    background-color: var(--white);
    color: var(--primary);
}

.cta-button.secondary:hover {
    background-color: var(--white);
    color: var(--accent);
}

/* Services Section */
.services {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    color: var(--accent);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

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

.service-card {
    background-color: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-image-wrapper {
    height: 250px;
    overflow: hidden;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-image {
    transform: scale(1.1);
}

.service-content {
    padding: 32px;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--accent);
}

.service-content p {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 24px;
}

.service-list {
    list-style: none;
}

.service-list li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-list li::before {
    content: '✦';
    color: var(--primary);
    font-size: 12px;
}

/* About Section */
.about {
    padding: 60px 0;
}

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

.about-image-container {
    position: relative;
}

.about-image-wrapper.main {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 20px 20px 60px rgba(0,0,0,0.1);
}

.about-image {
    width: 100%;
    display: block;
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background-color: var(--primary);
    color: var(--white);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 10px 10px 30px rgba(197, 160, 89, 0.3);
}

.experience-badge .years {
    display: block;
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-text .sub-title {
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    display: block;
    margin-bottom: 16px;
}

.about-text h2 {
    font-size: 42px;
    margin-bottom: 24px;
    color: var(--accent);
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-muted);
}

.about-stats {
    display: flex;
    gap: 40px;
    margin: 40px 0;
}

.stat-item h4 {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 4px;
}

.stat-item p {
    font-size: 14px;
    margin: 0;
}

.cta-link {
    text-decoration: none;
    color: var(--accent);
    font-weight: 700;
    font-size: 16px;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 4px;
    transition: var(--transition);
}

.cta-link:hover {
    color: var(--primary);
    padding-left: 10px;
}

/* Contact Section */
.contact {
    padding: 68px 0;
    background-color: var(--bg-light);
}

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

.contact-methods {
    margin-top: 40px;
    display: grid;
    gap: 24px;
}

.method-card {
    background-color: var(--white);
    padding: 24px;
    border-radius: 16px;
    gap: 20px;
    align-items: center;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.method-card:hover {
    transform: translateX(10px);
    border-left: 4px solid var(--primary);
}

.method-card .icon {
    font-size: 32px;
}

.method-card h4 {
    font-size: 18px;
    margin-bottom: 4px;
}

.method-card p {
    color: var(--text-muted);
    font-size: 14px;
}

.contact-cta-box {
    background-color: var(--accent);
    color: var(--white);
    padding: 60px;
    border-radius: 30px;
    text-align: center;
}

.contact-cta-box h3 {
    font-size: 32px;
    margin-bottom: 20px;
}

.contact-cta-box p {
    margin-bottom: 40px;
    opacity: 0.8;
}

.cta-button.large {
    width: 100%;
    padding: 20px;
}

/* Why Choose Us Section */
.why-choose {
    padding: 80px 0;
    background-color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-item {
    text-align: center;
    padding: 40px 30px;
    background-color: var(--bg-light);
    border-radius: 20px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.feature-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary-light);
    box-shadow: var(--shadow);
}

.feature-icon {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 20px;
    display: block;
}

.feature-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--accent);
}

.feature-item p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Footer */
.footer {
    background-color: #111;
    color: #999;
    padding: 30px 0 40px;
}

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

.footer-logo {
    height: 60px;
    margin-bottom: 30px;
    filter: brightness(0) invert(1);
}

.footer h4 {
    color: var(--white);
    margin-bottom: 30px;
    font-size: 20px;
}

.footer ul {
    list-style: none;
}

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

.footer ul li a {
    color: #999;
    text-decoration: none;
    transition: var(--transition);
}

.footer ul li a:hover {
    color: var(--primary);
    padding-left: 8px;
}

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

.social-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    border: 1px solid #333;
    padding: 8px 16px;
    border-radius: 50px;
    transition: var(--transition);
}

.social-links a:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid #222;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.footer-bottom .credits a {
    color: var(--white);
    text-decoration: none;
}

/* Responsive */
@media (max-width: 992px) {
    .about-grid, .contact-wrapper, .footer-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about-image-container {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none; /* Simplificado para este exemplo, normalmente teria um mobile menu */
    }
    
    .hero h1 {
        font-size: 42px;
    }
    
    .contact-cta-box {
        padding: 40px 24px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* Hamburger (Simple implementation for the request) */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    border: none;
    background: transparent;
    padding: 0;
    outline: none;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
}

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: var(--accent);
}

/* ============================================
   BOTÕES FIXOS E EXTRAS
   ============================================ */

/* Botão Voltar ao Topo */
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 20px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

#backToTop.visible {
    opacity: 1;
    visibility: visible;
}

#backToTop:hover {
    background-color: var(--primary);
    transform: translateY(-5px);
}

/* WhatsApp Fixo Esquerdo com Efeito Radar */
.whatsapp-fixed {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 30px;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.whatsapp-fixed::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #25d366;
    border-radius: 50%;
    z-index: -1;
    animation: radar 2s infinite;
}

@keyframes radar {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

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

/* Mapa Responsivo */
.map-container {
    position: relative;
    width: 100%;
    padding-bottom: 90%; /* Aspect Ratio 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

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

/* Ajustes de Responsividade 100% */
@media (max-width: 768px) {
    .navbar-container {
        padding: 0 15px;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        padding: 40px 20px;
        transition: 0.4s ease;
        display: flex !important;
        border: none !important;
        outline: none !important;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        border: none !important;
        outline: none !important;
    }

    .nav-link::after {
        display: none;
    }
    
    .hero {
        min-height: 500px;
        padding: 120px 15px 60px;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .about-grid, .contact-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-stats {
        justify-content: center;
    }
    
    .experience-badge {
        right: 0;
        bottom: 0;
        padding: 15px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .whatsapp-fixed, #backToTop {
        bottom: 20px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .whatsapp-fixed { left: 20px; }
    #backToTop { right: 20px; }
}

/* ============================================
   POPUP STYLES
   ============================================ */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    background: var(--white);
    border-radius: 20px;
    padding: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transform: scale(0.8);
    transition: var(--transition);
}

.popup-overlay.active .popup-content {
    transform: scale(1);
}

.popup-close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 35px;
    height: 35px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 2001;
}

.popup-image {
    max-width: 100%;
    max-height: 80vh;
    display: block;
    border-radius: 10px;
}

