/* ==========================================================================
   CSS Reset & Variables
   ========================================================================== */
   :root {
    /* Color Palette */
    --primary: #048C8C; /* Teal */
    --primary-light: #06B3B3;
    --primary-dark: #036666;
    
    --secondary: #13293D; /* Navy Blue */
    --secondary-light: #2A445C;
    
    --accent: #F26419; /* Vibrant Orange */
    --accent-hover: #D9530D;
    
    --text-main: #333333;
    --text-muted: #666666;
    --text-light: #F8F9FA;
    
    --bg-main: #FFFFFF;
    --bg-light: #F4F7F6;
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Variables */
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-pill: 50px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

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

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

/* ==========================================================================
   Typography & Utilities
   ========================================================================== */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--secondary);
    line-height: 1.2;
}

.highlight {
    color: var(--primary);
}

.highlight-text {
    position: relative;
    display: inline-block;
    color: var(--primary);
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(242, 100, 25, 0.2);
    z-index: -1;
    border-radius: 4px;
}

.text-orange {
    color: var(--accent);
}

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

.section-padding {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

.small-text {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Base Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-pill);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--accent);
    color: white;
    box-shadow: 0 4px 15px rgba(242, 100, 25, 0.4);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(242, 100, 25, 0.5);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

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

.btn-large {
    padding: 16px 36px;
    font-size: 1.125rem;
}

/* Glassmorphism */
.glass {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: var(--shadow-md);
}

.glass-dark {
    background: rgba(19, 41, 61, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
}

.glass-dark h2 {
    color: white;
}

/* ==========================================================================
   Header Navbar
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    z-index: 1000;
    padding: 16px 0;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
}

.logo-name {
    color: var(--primary);
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
}

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

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

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

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, #F4F7F6 0%, #FFFFFF 100%);
    overflow: hidden;
    position: relative;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.badge {
    display: inline-block;
    background-color: rgba(4, 140, 140, 0.1);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 90%;
}

.hero-cta-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
}

.hero-cta-group .small-text {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 0;
    color: var(--secondary);
    font-weight: 500;
}

.hero-cta-group i {
    color: var(--primary);
    font-size: 1.25rem;
}

/* Hero Image & Decorations */
.hero-image-wrapper {
    position: relative;
}

.image-shape {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.image-shape::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    background-color: var(--primary-light);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.2;
}

.hero-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.floating-card {
    position: absolute;
    bottom: -30px;
    left: -40px;
    padding: 20px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 16px;
    animation: float 4s ease-in-out infinite;
}

.icon-circle {
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.card-text strong {
    display: block;
    color: var(--secondary);
    font-size: 1.125rem;
}

.card-text span {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ==========================================================================
   Dores / Agitation Section
   ========================================================================== */
.section-title {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.section-title p {
    font-size: 1.125rem;
    color: var(--text-muted);
}

.dores-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.dor-card {
    background-color: white;
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-top: 4px solid transparent;
}

.dor-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-top-color: var(--primary);
}

.dor-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(4, 140, 140, 0.1);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 24px;
}

.dor-card h3 {
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.dor-card p {
    color: var(--text-muted);
}

/* ==========================================================================
   Benefits & Solution
   ========================================================================== */
.style-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.rounded-img {
    width: 100%;
    border-radius: var(--radius-lg);
}

.split-image {
    position: relative;
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    padding: 20px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 12px;
}

.experience-badge .number {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.experience-badge .text {
    font-weight: 600;
    line-height: 1.2;
    color: var(--secondary);
}

.split-content h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.split-content p {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 32px;
}

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

.benefits-list li {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.benefits-list i {
    font-size: 1.5rem;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 4px;
}

.benefits-list strong {
    display: block;
    font-size: 1.125rem;
    color: var(--secondary);
    margin-bottom: 4px;
}

.benefits-list span {
    color: var(--text-muted);
}

.mt-4 { margin-top: 2rem; }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.depoimento-card {
    background-color: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: var(--transition);
}

.depoimento-card:hover {
    box-shadow: var(--shadow-md);
}

.quote-icon {
    font-size: 2.5rem;
    color: rgba(4, 140, 140, 0.2);
    position: absolute;
    top: 30px;
    right: 30px;
}

.depoimento-text {
    font-size: 1rem;
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.depoimento-autor {
    display: flex;
    align-items: center;
    gap: 16px;
    border-top: 1px solid #EEEEEE;
    padding-top: 24px;
}

.autor-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.autor-info strong {
    display: block;
    color: var(--secondary);
}

.autor-info span {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ==========================================================================
   CTA Final
   ========================================================================== */
.cta-section {
    padding: 0 0 100px;
}

.cta-container {
    position: relative;
    z-index: 10;
    margin-top: -50px;
}

.cta-box {
    padding: 80px 40px;
    border-radius: var(--radius-lg);
    text-align: center;
    background: var(--secondary) url('data:image/svg+xml;utf8,<svg opacity="0.05" width="100%" height="100%" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="2" cy="2" r="2" fill="white"/></pattern></defs><rect width="100%" height="100%" fill="url(%23dots)"/></svg>');
}

.cta-box h2 {
    font-size: 3rem;
    margin-bottom: 24px;
}

.cta-box p {
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto 40px;
    color: rgba(255, 255, 255, 0.8);
}

.cta-sub {
    margin-top: 16px !important;
    color: rgba(255, 255, 255, 0.6) !important;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background-color: var(--bg-main);
    padding: 60px 0 20px;
    border-top: 1px solid #EEEEEE;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 16px;
    max-width: 300px;
}

.footer-links h3 {
    font-size: 1.125rem;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 16px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 1.25rem;
    transition: var(--transition);
    text-decoration: none;
}

.social-icons a:hover {
    background-color: var(--primary);
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #EEEEEE;
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* ==========================================================================
   Animations & Responsive
   ========================================================================== */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(242, 100, 25, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(242, 100, 25, 0); }
    100% { box-shadow: 0 0 0 0 rgba(242, 100, 25, 0); }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Scroll Fade Animations */
.fade-element {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

/* Responsive break points */
@media (max-width: 992px) {
    .hero h1 { font-size: 3rem; }
    .hero-container, .style-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero { text-align: center; }
    .hero-cta-group { align-items: center; }
    .hero p { margin: 0 auto 40px; }
    
    .floating-card {
        left: 20px;
        bottom: -20px;
    }
    
    .experience-badge { right: 20px; }
    
    .dores-grid, .depoimentos-grid {
        grid-template-columns: minmax(280px, 1fr) minmax(280px, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu { display: none; } /* Simple collapse for mobile */
    .hero { padding: 140px 0 60px; }
    .hero h1 { font-size: 2.25rem; }
    
    .dores-grid, .depoimentos-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-box h2 { font-size: 2rem; }
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
}
