/* ===================================
   RESET & BASE STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cores principais */
    --primary-pink: #d183a7;
    --secondary-pink: #d47fa6;
    --light-pink: #f9f0f4;
    --light-gray: #FAFAFA;
    --white: #FFFFFF;
    --dark-text: #2C2C2C;
    --light-text: #666666;
    --whatsapp-green: #25D366;
    
    /* Spacing */
    --section-padding: 80px 20px;
    --card-radius: 20px;
    --large-radius: 25px;
    
    /* Transitions */
    --transition: all 0.3s ease;
    
    /* Shadows - Minimalistas */
    --card-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    --hover-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--light-pink);
}

::-webkit-scrollbar-thumb {
    background: var(--secondary-pink);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: #FF7A9E;
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--secondary-pink) var(--light-pink);
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-text);
    line-height: 1.7;
    overflow-x: hidden;
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
    list-style: none;
}

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

/* ===================================
   LOADING SPINNER
   =================================== */
.loading-spinner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.loading-spinner.hidden {
    opacity: 0;
    pointer-events: none;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--light-gray);
    border-top-color: var(--secondary-pink);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===================================
   HEADER & NAVIGATION
   =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--secondary-pink);
    box-shadow: none;
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    padding: 5px 0;
    box-shadow: 0 1px 5px rgba(209, 131, 167, 0.15);
}

.navbar {
    padding: 12px 0;
}

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

.logo-img {
    height: 45px;
    width: auto;
}

/* Hamburger Menu */
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: var(--transition);
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Navigation Menu - Mobile First */
.nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: var(--white);
    display: flex;
    flex-direction: column;
    padding: 30px 20px;
    transition: left 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.nav-item {
    margin: 15px 0;
}

.nav-link {
    display: block;
    padding: 12px 20px;
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--dark-text);
    border-radius: 8px;
    transition: var(--transition);
    letter-spacing: 0.3px;
}

.nav-link:hover,
.nav-link:focus {
    background: var(--light-pink);
    color: var(--secondary-pink);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-pink) 100%);
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(209, 131, 167, 0.15) 0%, transparent 70%);
    animation: shimmer 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes shimmer {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-20%, -20%) scale(1.1);
        opacity: 0.6;
    }
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, rgba(212, 127, 166, 0.6), transparent);
    border-radius: 50%;
    animation: float 15s infinite ease-in-out;
}

.particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.particle:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 2s;
    animation-duration: 14s;
}

.particle:nth-child(3) {
    top: 40%;
    left: 30%;
    animation-delay: 4s;
    animation-duration: 16s;
}

.particle:nth-child(4) {
    top: 70%;
    left: 60%;
    animation-delay: 6s;
    animation-duration: 13s;
}

.particle:nth-child(5) {
    top: 30%;
    left: 90%;
    animation-delay: 8s;
    animation-duration: 15s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    50% {
        transform: translateY(-80px) translateX(40px) scale(1.2);
        opacity: 0.8;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0;
    }
}

.hero-overlay {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--dark-text);
    display: flex;
    flex-direction: column;
    gap: 50px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    align-items: flex-start;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-text);
    letter-spacing: -1.5px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 20px;
    color: var(--secondary-pink);
    letter-spacing: -0.5px;
}

.hero-description {
    font-size: 1.1rem;
    max-width: 550px;
    margin-bottom: 35px;
    line-height: 1.9;
    color: var(--light-text);
}

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

.hero-image::after {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background: linear-gradient(45deg, 
        transparent 0%, 
        rgba(209, 131, 167, 0.3) 25%, 
        rgba(212, 127, 166, 0.4) 50%, 
        rgba(209, 131, 167, 0.3) 75%, 
        transparent 100%);
    border-radius: var(--large-radius);
    animation: glowMove 12s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
    opacity: 0;
}

@keyframes glowMove {
    0%, 100% {
        opacity: 0;
        transform: rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: rotate(180deg);
    }
}

.hero-image img {
    width: 100%;
    max-width: 550px;
    height: 450px;
    border-radius: var(--large-radius);
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(212, 127, 166, 0.2);
    position: relative;
    z-index: 2;
}

.hero-divider {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--secondary-pink), transparent);
    border-radius: 3px;
    opacity: 0.8;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: var(--secondary-pink);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    min-width: 200px;
    min-height: 48px;
    text-align: center;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: var(--secondary-pink);
    color: var(--white);
    box-shadow: none;
}

.btn-primary:hover {
    background: #FF7A9E;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(255, 143, 171, 0.2);
}

.btn-secondary {
    background: var(--white);
    color: var(--dark-text);
    border: 1.5px solid var(--dark-text);
}

.btn-secondary:hover {
    background: var(--light-pink);
    color: var(--secondary-pink);
    border-color: var(--secondary-pink);
    transform: translateY(-1px);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
    min-width: 250px;
}

.btn-ghost {
    background: transparent;
    color: var(--light-text);
    border: 1px solid rgba(209, 131, 167, 0.3);
    cursor: not-allowed;
    opacity: 0.7;
    position: relative;
}

.btn-ghost:hover {
    transform: none;
    background: transparent;
}

.btn-ghost:not([disabled]) {
    color: var(--secondary-pink);
    border: 1px solid var(--secondary-pink);
    cursor: pointer;
    opacity: 1;
}

.btn-ghost:not([disabled]):hover {
    background: var(--secondary-pink);
    color: var(--white);
    transform: translateY(-1px);
}

.badge-soon {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--secondary-pink);
    color: var(--white);
    font-size: 0.65rem;
    padding: 3px 8px;
    border-radius: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

/* ===================================
   SECTION STYLES
   =================================== */
section {
    padding: var(--section-padding);
}

.section-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 15px;
    letter-spacing: -0.5px;
    line-height: 1.3;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 40px;
}

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

/* ===================================
   SOBRE SECTION
   =================================== */
.sobre {
    background: var(--light-pink);
}

.sobre-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.sobre-text {
    flex: 1;
}

.sobre-description {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--light-text);
}

.sobre-features {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0;
    background: transparent;
    border: none;
}

.feature-item i {
    font-size: 1.2rem;
    color: var(--secondary-pink);
}

.feature-item span {
    font-weight: 400;
    font-size: 0.95rem;
    color: var(--light-text);
}

.sobre-image {
    flex: 1;
}

.sobre-image img {
    width: 100%;
    border-radius: var(--large-radius);
}

/* ===================================
   PROCEDIMENTOS SECTION
   =================================== */
.procedimentos {
    background: var(--white);
}

.procedimentos-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.procedimentos-nav {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--secondary-pink) var(--light-pink);
}

.procedimentos-nav::-webkit-scrollbar {
    height: 4px;
}

.procedimentos-nav::-webkit-scrollbar-track {
    background: var(--light-pink);
}

.procedimentos-nav::-webkit-scrollbar-thumb {
    background: var(--secondary-pink);
    border-radius: 2px;
}

.nav-item-proc {
    padding: 12px 24px;
    background: transparent;
    border: 1.5px solid rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--light-text);
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-item-proc:hover {
    border-color: var(--secondary-pink);
    color: var(--secondary-pink);
}

.nav-item-proc.active {
    background: var(--secondary-pink);
    color: var(--white);
    border-color: var(--secondary-pink);
}

.procedimentos-category {
    display: none;
}

.procedimentos-category.active {
    display: block;
    animation: fadeInUp 0.5s ease;
}

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

.category-title {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--light-text);
    margin-bottom: 35px;
    padding-left: 18px;
    border-left: 3px solid var(--secondary-pink);
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
}

.category-title i {
    display: none;
}

.procedimentos-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.procedimento-card {
    background: var(--white);
    border-radius: var(--card-radius);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    cursor: pointer;
}

.procedimento-card:hover {
    transform: translateY(-3px);
    border-color: var(--primary-pink);
    box-shadow: 0 4px 12px rgba(255, 182, 217, 0.15);
}

.card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

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

.card-content {
    padding: 20px;
    text-align: center;
}

.card-title {
    font-size: 1rem;
    font-weight: 500;
    color: var(--dark-text);
    letter-spacing: -0.2px;
}

/* ===================================
   INSTAGRAM SECTION
   =================================== */
.instagram-section {
    background: var(--white);
    text-align: center;
}

.instagram-embed {
    max-width: 1000px;
    margin: 0 auto;
}

.instagram-cta {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

/* ===================================
   GALERIA SECTION
   =================================== */
.galeria {
    background: var(--light-pink);
}

.galeria-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.galeria-item {
    position: relative;
    border-radius: var(--large-radius);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

.galeria-item:hover {
    transform: scale(1.02);
}

.galeria-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition);
}

.galeria-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(253, 127, 153, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.galeria-item:hover .galeria-overlay {
    opacity: 1;
}

.galeria-overlay i {
    font-size: 3rem;
    color: var(--white);
}

/* ===================================
   LIGHTBOX
   =================================== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
}

.lightbox.active {
    display: flex;
}

.lightbox-image {
    max-width: 90%;
    max-height: 90vh;
    border-radius: var(--card-radius);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close {
    top: 20px;
    right: 20px;
}

.lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.4);
}

/* ===================================
   LOCALIZAÇÃO SECTION
   =================================== */
.localizacao {
    background: var(--white);
}

.localizacao-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.localizacao-info {
    flex: 1;
}

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    padding: 0;
    background: transparent;
    border-radius: 0;
}

.info-item i {
    font-size: 1.3rem;
    color: var(--secondary-pink);
    flex-shrink: 0;
    margin-top: 3px;
}

.info-item h4 {
    font-size: 0.85rem;
    margin-bottom: 5px;
    color: var(--light-text);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-item p {
    color: var(--dark-text);
    line-height: 1.6;
    font-size: 0.95rem;
}

.localizacao-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.localizacao-map {
    flex: 1;
    border-radius: var(--card-radius);
    overflow: hidden;
    border: 1px solid var(--primary-pink);
}

.localizacao-map iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* ===================================
   CONTATO SECTION
   =================================== */
.contato {
    background: var(--white);
    text-align: center;
}

.contato-content {
    max-width: 700px;
    margin: 0 auto;
}

.contato-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--light-text);
    margin-bottom: 30px;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--light-pink);
    color: var(--dark-text);
    padding: 40px 20px 30px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin-bottom: 30px;
    align-items: flex-start;
    text-align: left;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    margin-bottom: 8px;
}

.footer-tagline {
    font-size: 0.85rem;
    color: var(--light-text);
    font-weight: 300;
}

.footer-info h4,
.footer-social h4 {
    font-size: 0.9rem;
    margin-bottom: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--light-text);
}

.footer-info p {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--light-text);
}

.footer-info i {
    color: var(--secondary-pink);
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 12px;
    justify-content: flex-start;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    color: var(--secondary-pink);
    border: 1.5px solid var(--secondary-pink);
    border-radius: 50%;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--secondary-pink);
    color: var(--white);
    transform: scale(1.05);
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--light-text);
    font-weight: 300;
}

/* ===================================
   WHATSAPP FLOATING BUTTON
   =================================== */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: var(--whatsapp-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 2px 10px rgba(37, 211, 102, 0.25);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--dark-text);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}

@keyframes pulse {
    0% {
        box-shadow: 0 2px 10px rgba(37, 211, 102, 0.25);
    }
    50% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
    }
    100% {
        box-shadow: 0 2px 10px rgba(37, 211, 102, 0.25);
    }
}

/* ===================================
   ANIMATIONS
   =================================== */
.fade-in {
    animation: fadeIn 1s ease-in;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

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

/* ===================================
   UTILITY CLASSES
   =================================== */
.hidden {
    display: none !important;
}

.no-scroll {
    overflow: hidden;
}
