:root {
    /* Brand Color Variables */
    --primary-color: #2c4c9a;
    --secondary-color: #2db6b7;
    --tertiary-color: #ffffff;
    --background-color: #ffffff;
    --box-background-color: #d8d8d8;
    --text-primary-color: #000000;
    --text-secondary-color: #4F4F4F;
    --text-third-color: #163547;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-primary-color);
    background-color: var(--background-color);
}

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

.hero-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--tertiary-color);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 76, 154, 0.95) 0%, rgba(45, 182, 183, 0.95) 100%);
    z-index: 1;
}

.hero-header .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 60vh;
}

.hero-left {
    text-align: left;
}

.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-container {
    margin-bottom: 2rem;
}

.logo {
    max-width: 180px;
    height: auto;
}

.hero-title {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--tertiary-color);
    line-height: 1.2;
    font-weight: 600;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--tertiary-color);
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.7;
    text-align: left;
}

.hero-btn {
    display: inline-block;
    background: var(--tertiary-color);
    color: var(--primary-color);
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
    margin-top: 20px;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.95);
}

.hero-image {
    position: relative;
    max-width: 500px;
    width: 100%;
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.hero-img:hover {
    transform: scale(1.02);
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-left {
        text-align: center;
        order: 1;
    }
    
    .hero-right {
        order: 2;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-description {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .logo {
        max-width: 150px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-header {
        padding: 3rem 0;
        min-height: 70vh;
    }
    
    .hero-content {
        gap: 2rem;
    }
    
    .hero-image {
        max-width: 400px;
    }
}

.logo-container {
    margin-bottom: 1.5rem;
}

.logo {
    max-width: 200px;
    height: auto;
}

h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--tertiary-color);
    line-height: 1.2;
    font-weight: 400;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--tertiary-color);
    max-width: 800px;
    margin: 0 auto;
    text-align: justify;
    opacity: 0.95;
    line-height: 1.6;
}

.about {
    background: var(--box-background-color);
    padding: 4rem 0;
    text-align: center;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-third-color);
}

.about p {
    font-size: 1.1rem;
    color: var(--text-secondary-color);
    max-width: 800px;
    margin: 0 auto;
    text-align: justify;
    line-height: 1.8;
}

.features {
    padding: 4rem 0;
    background: var(--box-background-color);
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-third-color);
}

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

.feature-card {
    background: var(--background-color);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    border-left: 4px solid var(--primary-color);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-third-color);
    line-height: 1.3;
}

.feature-card p {
    color: var(--text-secondary-color);
    line-height: 1.6;
}

.cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--tertiary-color);
    padding: 4rem 0;
    text-align: center;
}

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

.cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    background: var(--tertiary-color);
    color: var(--primary-color);
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s ease;
    font-size: 1.1rem;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

footer {
    background: var(--text-third-color);
    color: var(--tertiary-color);
    padding: 2rem 0;
    text-align: center;
}

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

.footer-links a {
    color: var(--tertiary-color);
    text-decoration: none;
    margin: 0 1rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .logo {
        max-width: 150px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .about h2,
    .features h2,
    .cta h2 {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-description,
    .about p {
        text-align: left;
    }
}


/* Seção de Benefícios */
.benefits {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    opacity: 0.3;
    z-index: 1;
}

.benefits .container {
    position: relative;
    z-index: 2;
}

.benefits h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-third-color);
    font-weight: 700;
    position: relative;
}

.benefits h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 2px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-card {
    background: var(--background-color);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    text-align: left;
    border: 1px solid rgba(255,255,255,0.8);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.benefit-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-card.specialists {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(44, 76, 154, 0.02) 0%, rgba(45, 182, 183, 0.02) 100%);
}

.benefit-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(44, 76, 154, 0.2);
    transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: rotate(5deg) scale(1.1);
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-third-color);
    line-height: 1.3;
    font-weight: 600;
    position: relative;
}

.benefit-card p {
    color: var(--text-secondary-color);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 0;
}

.specialists-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-top: 1rem;
}

.specialist-item {
    background: linear-gradient(135deg, rgba(44, 76, 154, 0.08) 0%, rgba(45, 182, 183, 0.08) 100%);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    color: var(--text-secondary-color);
    line-height: 1.7;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.specialist-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    transition: width 0.3s ease;
}

.specialist-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(44, 76, 154, 0.1);
}

.specialist-item:hover::before {
    width: 8px;
}

.specialist-item strong {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
}

/* Responsividade */
@media (max-width: 1200px) {
    .benefit-card.specialists {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .benefits {
        padding: 3rem 0;
    }
    
    .benefits h2 {
        font-size: 2.2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2.5rem;
    }
    
    .benefit-card {
        padding: 2rem;
    }
    
    .benefit-icon {
        width: 70px;
        height: 70px;
        font-size: 3rem;
    }
    
    .specialists-list {
        gap: 1rem;
    }
    
    .specialist-item {
        padding: 1.2rem;
    }
}

@media (max-width: 480px) {
    .benefits h2 {
        font-size: 1.8rem;
    }
    
    .benefit-card {
        padding: 1.5rem;
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 2.5rem;
    }
}
/* Seção FAQ */
.faq {
    padding: 5rem 0;
    background: var(--background-color);
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-third-color);
    position: relative;
}

.faq h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 2px;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: var(--background-color);
    border: 2px solid #f0f0f0;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.faq-item:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.faq-question {
    padding: 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, rgba(44, 76, 154, 0.02) 0%, rgba(45, 182, 183, 0.02) 100%);
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, rgba(44, 76, 154, 0.05) 0%, rgba(45, 182, 183, 0.05) 100%);
}

.faq-question h3 {
    font-size: 1.3rem;
    color: var(--text-third-color);
    margin: 0;
    font-weight: 600;
    flex: 1;
    line-height: 1.4;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: bold;
    transition: transform 0.3s ease;
    margin-left: 1rem;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(44, 76, 154, 0.1);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: var(--primary-color);
    color: white;
}

.faq-answer {
    padding: 0 2rem 2rem 2rem;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
    animation: fadeIn 0.3s ease;
}

.faq-answer p {
    color: var(--text-secondary-color);
    line-height: 1.7;
    margin: 0;
    font-size: 1.05rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Seção Depoimentos */
.testimonials {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>') repeat;
    opacity: 0.5;
    z-index: 1;
}

.testimonials .container {
    position: relative;
    z-index: 2;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-third-color);
    position: relative;
}

.testimonials h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 2px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--background-color);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    position: relative;
    border: 1px solid rgba(255,255,255,0.8);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 20px 20px 0 0;
}

.quote-icon {
    font-size: 4rem;
    color: var(--secondary-color);
    font-family: Georgia, serif;
    line-height: 1;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary-color);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-info h4 {
    color: var(--text-third-color);
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.author-info span {
    color: var(--primary-color);
    font-size: 0.95rem;
    font-weight: 500;
}

/* Responsividade */
@media (max-width: 768px) {
    .faq,
    .testimonials {
        padding: 3rem 0;
    }
    
    .faq h2,
    .testimonials h2 {
        font-size: 2rem;
    }
    
    .faq-question {
        padding: 1.5rem;
    }
    
    .faq-answer {
        padding: 0 1.5rem 1.5rem 1.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
    
    .quote-icon {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .faq-question h3 {
        font-size: 1.1rem;
    }
    
    .testimonial-content p {
        font-size: 1rem;
    }
}
/* Navigation Styles */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.15);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
}

.nav-logo {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-item {
    margin: 0 1rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-third-color);
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    transition: width 0.3s ease;
}

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

.nav-link.cta-button {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    margin-left: 1rem;
    transition: all 0.3s ease;
}

.nav-link.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(44, 76, 154, 0.3);
    color: white;
}

.nav-link.cta-button::after {
    display: none;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background: var(--text-third-color);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

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

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

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

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Adjust body padding for fixed navbar */
body {
    padding-top: 80px;
}

/* Responsive Navigation */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        backdrop-filter: blur(10px);
        padding: 2rem 0;
    }

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

    .nav-item {
        margin: 1rem 0;
    }

    .nav-link.cta-button {
        margin: 1rem 0;
        display: inline-block;
    }

    .hamburger {
        display: flex;
    }

    body {
        padding-top: 70px;
    }

    .navbar .container {
        padding: 0.8rem 20px;
    }
}

@media (max-width: 480px) {
    .nav-logo {
        height: 35px;
    }

    body {
        padding-top: 65px;
    }
}

@media (max-width: 768px) {
    .nav-logo {
        height: 35px;
    }

    body {
        padding-top: 65px;
    }
}

@media (max-width: 480px) {
    .nav-logo {
        height: 35px;
    }

    body {
        padding-top: 65px;
    }
}

@media (max-width: 480px) {
    .faq-question h3 {
        font-size: 1.1rem;
    }
    
    .testimonial-content p {
        font-size: 1rem;
    }
}