/* ===== VARIÁVEIS ===== */
:root {
    /* Cores - Paleta Original */
    --sage-green: #4ECDC4;
    --cream: #F7F7F7;
    --terracota: #FF6B6B;
    --dark-gray: #2D3436;
    --white: #FFFFFF;
    
    /* Fontes */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.7;
    color: var(--dark-gray);
    background: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--dark-gray);
}

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

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

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%;
}

/* ===== SECTION ===== */
.section {
    padding: 5rem 1rem;
}

.bg-cream {
    background: var(--cream);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-label {
    color: var(--terracota);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

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

.section-description {
    font-size: 1.125rem;
    color: rgba(45, 52, 54, 0.8);
}

/* ===== BUTTONS ===== */
.btn-primary {
    background: var(--terracota);
    color: var(--white);
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    background: #ff5252;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.3);
}

.btn-outline {
    border: 2px solid var(--sage-green);
    color: var(--sage-green);
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    background: transparent;
}

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

.btn-full {
    width: 100%;
}

/* ===== HEADER ===== */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    padding: 1.25rem 0;
    transition: all 0.3s ease;
}

#header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 0.75rem 0;
}

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

.logo {
    cursor: pointer;
}

.logo img {
    height: 3rem;
    width: auto;
}

#header.scrolled .logo img {
    height: 2.5rem;
}

.desktop-menu {
    display: none;
    align-items: center;
    gap: 2rem;
}

.desktop-menu a {
    color: var(--dark-gray);
    font-weight: 500;
    transition: color 0.3s ease;
}

.desktop-menu a:hover {
    color: var(--sage-green);
}

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--dark-gray);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    color: var(--dark-gray);
    font-weight: 500;
    padding: 0.5rem 0;
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #F7F7F7 0%, #e8e8e8 50%, #d4d4d4 100%);
    padding-top: 5rem;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    padding: 2rem 0;
}

.crp-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--sage-green);
    border: 1px solid rgba(78, 205, 196, 0.2);
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero h1 .highlight {
    color: var(--sage-green);
}

.hero-description {
    font-size: 1.125rem;
    color: rgba(45, 52, 54, 0.8);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-tags {
    margin-top: 2rem;
}

.tags-label {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tags span {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    border: 1px solid rgba(78, 205, 196, 0.1);
}

.hero-image {
    position: relative;
}

.hero-image .image-wrapper {
    position: relative;
    aspect-ratio: 3/4;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    border: 8px solid rgba(255, 255, 255, 0.5);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
}

.wave-divider svg {
    width: 100%;
    height: auto;
}

/* ===== ABOUT ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image .image-wrapper {
    aspect-ratio: 1;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 8px solid var(--cream);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content .subtitle {
    color: var(--sage-green);
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.about-text {
    margin: 2rem 0;
}

.about-text p {
    margin-bottom: 1rem;
    color: rgba(45, 52, 54, 0.8);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.highlight-card {
    background: var(--cream);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(78, 205, 196, 0.1);
    transition: all 0.3s ease;
}

.highlight-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.highlight-card .icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.highlight-card h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.highlight-card p {
    font-size: 0.875rem;
    color: rgba(45, 52, 54, 0.7);
}

.quote {
    border-left: 4px solid var(--terracota);
    padding-left: 1.5rem;
    font-style: italic;
    color: rgba(45, 52, 54, 0.7);
    margin-top: 2rem;
}

/* ===== SERVICES ===== */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.service-card .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

.service-card p {
    color: rgba(45, 52, 54, 0.7);
}

.benefits {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 1.5rem;
    margin-top: 3rem;
}

.benefits h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.benefit-item .check {
    color: var(--sage-green);
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.benefits-note {
    text-align: center;
    font-style: italic;
    color: rgba(45, 52, 54, 0.7);
    margin-top: 2rem;
}

/* ===== APPROACH (DBT) ===== */
.dbt-intro {
    background: var(--cream);
    padding: 2rem;
    border-radius: 1.5rem;
    margin: 2rem 0;
    text-align: center;
}

.skills-title {
    text-align: center;
    font-size: 2rem;
    margin: 3rem 0 1rem;
}

.skills-subtitle {
    text-align: center;
    color: rgba(45, 52, 54, 0.7);
    margin-bottom: 3rem;
}

.skills-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.skill-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.skill-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.skill-icon {
    width: 4rem;
    height: 4rem;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.skill-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.skill-card p {
    color: rgba(45, 52, 54, 0.8);
    line-height: 1.7;
}

.cta-box {
    background: var(--cream);
    padding: 3rem;
    border-radius: 1.5rem;
    text-align: center;
}

.cta-box h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-box p {
    color: rgba(45, 52, 54, 0.8);
    margin-bottom: 2rem;
}

/* ===== MODALITIES ===== */
.modalities-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.modality-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.modality-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.modality-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.modality-card > p {
    color: rgba(45, 52, 54, 0.8);
    margin-bottom: 2rem;
}

.location-box,
.platform-box {
    background: var(--cream);
    padding: 1.5rem;
    border-radius: 1rem;
    margin-top: 1.5rem;
}

.location-box h4,
.platform-box h4 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.location-box p,
.platform-box p {
    margin-bottom: 0.5rem;
}

.location-box button {
    margin-top: 1rem;
}

.advantages {
    margin-top: 1rem;
}

.advantages ul {
    list-style: none;
    padding-left: 0;
}

.advantages li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.advantages li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--sage-green);
    font-weight: bold;
}

.particular-badge {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 1rem;
    text-align: center;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.contact-info h3,
.contact-form-wrapper h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 1rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-card:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-card.whatsapp:hover {
    border-color: #25D366;
}

.contact-card.instagram:hover {
    border-color: #E4405F;
}

.contact-card.email:hover {
    border-color: var(--terracota);
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-card h4 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.contact-card p {
    color: rgba(45, 52, 54, 0.7);
}

.office-info {
    background: var(--cream);
    padding: 1.5rem;
    border-radius: 1rem;
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.crp-badge-footer {
    background: var(--sage-green);
    color: var(--white);
    padding: 1rem;
    border-radius: 1rem;
    text-align: center;
    margin-top: 1rem;
}

/* Form */
.contact-form-wrapper {
    background: var(--cream);
    padding: 2rem;
    border-radius: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-gray);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid rgba(78, 205, 196, 0.2);
    border-radius: 0.5rem;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--sage-green);
    box-shadow: 0 0 0 3px rgba(78, 205, 196, 0.1);
}

.form-note {
    text-align: center;
    font-size: 0.875rem;
    color: rgba(45, 52, 54, 0.6);
    margin-top: 1rem;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 3rem 1rem 2rem;
}

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

.footer-logo {
    height: 4rem;
    width: auto;
    margin-bottom: 1rem;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.footer-crp {
    color: var(--sage-green);
    font-weight: 600;
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 1rem;
}

.footer-links a,
.footer-contact a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--sage-green);
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

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

.footer-quote {
    text-align: center;
    margin-top: 1.5rem;
}

.footer-quote p {
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
    font-size: 0.875rem;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* ===== RESPONSIVE ===== */
@media (min-width: 768px) {
    .section {
        padding: 6rem 2rem;
    }
    
    .section-header h2 {
        font-size: 3rem;
    }
    
    .desktop-menu {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .hero-buttons {
        flex-direction: row;
    }
    
    .hero-grid,
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .modalities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr 1.5fr;
    }
    
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .section {
        padding: 8rem 2rem;
    }
    
    .hero h1 {
        font-size: 4.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 10px;
}

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

::-webkit-scrollbar-thumb {
    background: var(--sage-green);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #3db8b0;
}

