:root {
    /* Color Palette - Espaço Sprada */
    --primary: #002da2;
    --primary-light: #2d5ac2;
    --secondary: #f0f4ff;
    --accent: #002da2;
    --bg-main: #ffffff;
    --bg-soft: #f8faff;
    --bg-accent: #eef2ff;
    --text-main: #1a1a1a;
    --text-muted: #5c5c5c;
    --text-light: #7a7a7a;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(0, 45, 162, 0.1);

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-accent: 'Instrument Serif', serif;

    /* Spacing & Misc */
    --container: 1200px;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --transition: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
* {
    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(--bg-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    line-height: 1.1;
    font-weight: 600;
}

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

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

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Utilities */
.badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: var(--secondary);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.glass-card {
    background: var(--glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    box-shadow: 0 8px 32px rgba(0, 45, 162, 0.05);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.4s var(--transition);
    text-align: center;
    gap: 0.5rem;
}

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

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 45, 162, 0.2);
}

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

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

.btn-whatsapp {
    background: #25d366;
    color: white;
}

.btn-whatsapp:hover {
    background: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s var(--transition);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Header */
.tp-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: all 0.4s var(--transition);
}

.tp-header.scrolled {
    background: var(--glass);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.tp-header.scrolled .tp-container {
    height: 70px;
}

.tp-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

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

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

/* Hero Section */
.hero {
    padding: 160px 0 100px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at top right, var(--secondary) 0%, white 60%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.hero h1 span {
    font-family: var(--font-accent);
    font-style: italic;
    font-weight: 400;
}

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

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

.hero-image-container img {
    border-radius: var(--radius-lg);
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1);
}

/* About Section Customization */
#sobre {
    background: var(--primary);
    color: white;
}

#sobre h2 {
    color: white !important;
}

#sobre .badge {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

#sobre p {
    color: rgba(255, 255, 255, 0.9);
}

#sobre strong {
    color: white;
}

/* Services */
.services {
    padding: 100px 0;
    background: var(--bg-soft);
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

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

.service-card {
    padding: 3rem;
    transition: all 0.4s var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    display: block;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-list {
    list-style: none;
    margin-top: 1.5rem;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.service-list li i {
    font-size: 1rem;
    color: var(--primary);
    margin: 0;
}

/* Pricing */
.pricing {
    padding: 100px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.price-card {
    padding: 3rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.price-card.featured {
    border: 2px solid var(--primary);
    transform: scale(1.05);
    background: var(--secondary);
}

.price-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.price-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin: 1.5rem 0;
}

.price-value span {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.7;
}

/* Contact */
.contact {
    padding: 100px 0;
    background: var(--primary);
    color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-item i {
    font-size: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 50%;
}

/* Footer */
footer {
    padding: 40px 0;
    border-top: 1px solid #eee;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Service Details Section (Generic for both Masso and Holistic) */
.details-section {
    padding: 100px 0;
    background: white;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.details-card {
    padding: 2.5rem;
    border: 1px solid var(--glass-border);
    background: var(--bg-soft);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.details-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.details-card h3 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.details-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-muted);
}

/* Contact Maps Section */
.contact-maps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.map-card {
    background: white;
    color: var(--text-main);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.map-card h4 {
    color: var(--primary);
    font-size: 1.2rem;
}

.map-wrapper {
    width: 100%;
    height: 250px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid #eee;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

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

/* Responsive */
@media (max-width: 960px) {
    .contact-maps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 960px) {

    .hero-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
    }

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

    .price-card.featured {
        transform: none;
    }
}