:root {
    --primary: #be185d;        /* Deep Pink */
    --primary-light: #db2777;  /* Bright Pink */
    --accent: #f472b6;         /* Soft Blush Pink */
    --accent-hover: #ec4899;   /* Hot Pink */
    --bg-main: #ffffff;        /* Pure White */
    --bg-soft: #fdf2f8;        /* Very Light Pink */
    --bg-dark: #831843;        /* Dark Magenta/Pink */
    --text-main: #4a4a4a;
    --text-muted: #7a7a7a;
    --text-light: #ffffff;
    
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
    
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    
    --shadow-soft: 0 10px 30px rgba(190, 24, 93, 0.05); /* Pink shadow */
    --shadow-hover: 0 15px 40px rgba(190, 24, 93, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--bg-main);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .logo, .eyebrow {
    font-family: var(--font-heading);
    color: var(--primary);
    font-weight: 600;
}

h1 em {
    font-style: italic;
    font-weight: 300;
    color: var(--accent);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

/* Utilities */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center { text-align: center; }
.text-light { color: var(--text-light); }
.text-light h1, .text-light h2, .text-light h3, .text-light h4 { color: var(--text-light); }
.bg-soft { background-color: var(--bg-soft); }
.bg-dark { background-color: var(--bg-dark); }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-lg { max-width: 800px; }
.mt-8 { margin-top: 2rem; }
.opacity-70 { opacity: 0.7; }
.text-sm { font-size: 0.875rem; }

/* Buttons */
.btn-primary {
    display: inline-block;
    background-color: var(--accent);
    color: #fff;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 14px;
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.3);
}

.btn-primary.small {
    padding: 10px 20px;
    font-size: 13px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(253, 252, 251, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: padding 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.nav-links a {
    margin: 0 15px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--accent);
}

/* Hero Section */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 60px;
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, var(--bg-soft) 100%);
}

.hero-content {
    max-width: 800px;
    animation: fadeIn 1s ease-out forwards;
}

.eyebrow {
    display: block;
    font-size: 1.2rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 30px;
}

.hero h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background-color: var(--accent);
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

/* Sections Configuration */
.section {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 60px;
}

.section-header .icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.section-header .subtitle {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--accent);
    font-style: italic;
    margin-bottom: 15px;
}

.section-header .description {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Pricing Tables */
.pricing-table-wrapper {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-table-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
}

.pricing-table th, .pricing-table td {
    padding: 24px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.pricing-table th {
    background-color: var(--primary);
    color: #fff;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.pricing-table th small {
    font-weight: 300;
    opacity: 0.8;
}

.pricing-table td:first-child {
    text-align: left;
    font-weight: 500;
    color: var(--primary);
}

.pricing-table tr:last-child td {
    border-bottom: none;
}

.pricing-table tbody tr:hover td {
    background-color: var(--bg-soft);
}

/* Pricing List */
.pricing-list {
    list-style: none;
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    padding: 30px;
}

.pricing-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px dashed rgba(0,0,0,0.1);
}

.pricing-list li:last-child {
    border-bottom: none;
}

.service-name {
    font-weight: 500;
    color: var(--primary);
}

.service-price {
    font-weight: 600;
    color: var(--accent);
}

/* Depilação (Gender Split) */
.gender-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.gender-card h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--primary-light);
}

.gender-card .pricing-list {
    height: 100%;
}

.line-style li {
    font-size: 0.95rem;
}

/* Rules Grid */
.rules-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.rule-card {
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: var(--radius-md);
    border-left: 3px solid var(--accent);
}

.rule-card.wide {
    grid-column: span 2;
}

.rule-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--accent);
}

.rule-card p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.rule-card .bullet-list {
    list-style-position: inside;
    color: rgba(255,255,255,0.8);
}

.rule-card .bullet-list li {
    margin-bottom: 8px;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: #fff;
    padding: 60px 0 30px;
}

.footer h3 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 5px;
}

.footer p {
    color: rgba(255,255,255,0.6);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

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

@media (max-width: 768px) {
    .nav-links { display: none; } /* Simple approach for mobile */
    .hero h1 { font-size: 2.8rem; }
    .gender-split { grid-template-columns: 1fr; }
    .rules-grid { grid-template-columns: 1fr; }
    .rule-card.wide { grid-column: span 1; }
    
    .pricing-table th, .pricing-table td {
        padding: 15px 10px;
        font-size: 0.9rem;
    }
}
