/* Estilos Globais */
:root {
    --primary-color: #00A1E4; /* Azul Qualicorp */
    --secondary-color: #004B8D; /* Azul escuro Qualicorp */
    --accent-color: #003366; /* Novo azul escuro para destaque */
    --text-color: #333;
    --light-gray: #f8f9fa;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', 'Segoe UI', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    line-height: 1.6;
    color: var(--text-color);
}

/* Header e Navegação */
.header {
    position: fixed;
    width: 100%;
    background: var(--white);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    z-index: 1000;
    height: 90px;
    transition: all 0.3s ease;
    top: 0;
    left: 0;
}

.header.scrolled {
    height: 70px;
    background: rgba(255, 255, 255, 0.98);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 4%;
    max-width: 1400px;
    margin: 0 auto;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
}

.logo h1 {
    color: var(--secondary-color);
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    position: relative;
    padding: 0.5rem 0;
}

.logo h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
    margin-right: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    text-transform: uppercase;
    position: relative;
    padding: 0.5rem 0;
}

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

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

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

.nav-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.quote-btn, .login-btn {
    padding: 0.8rem 1.8rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 42px;
}

.quote-btn {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    box-shadow: 0 4px 12px rgba(0, 161, 228, 0.2);
}

.quote-btn:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 161, 228, 0.3);
}

.login-btn {
    background: transparent;
    color: var(--secondary-color);
    border: 1.5px solid var(--secondary-color);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.login-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--secondary-color);
    transition: width 0.3s ease;
    z-index: -1;
}

.login-btn:hover::before {
    width: 100%;
}

.login-btn:hover {
    color: var(--white);
}

/* Responsividade do Header */
@media (max-width: 1024px) {
    .nav-links {
        gap: 2rem;
        margin-right: 1.5rem;
    }

    .quote-btn, .login-btn {
        padding: 0.8rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .header {
        height: 70px;
    }

    .navbar {
        padding: 0 1rem;
    }

    .nav-container {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .nav-container.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-links {
        flex-direction: column;
        gap: 1rem;
        margin: 0;
        width: 100%;
    }

    .nav-buttons {
        flex-direction: column;
        width: 100%;
        gap: 0.5rem;
    }

    .quote-btn, .login-btn {
        width: 100%;
        height: 45px;
    }

    .hamburger {
        display: block;
        cursor: pointer;
        z-index: 100;
    }

    .hamburger span {
        display: block;
        width: 25px;
        height: 2px;
        background: var(--secondary-color);
        margin: 6px 0;
        transition: all 0.3s ease;
    }

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

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

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

/* Hero Section */
.hero {
    height: 80vh;
    background: linear-gradient(to right, 
                rgba(0, 75, 141, 0.55) 0%, 
                rgba(0, 161, 228, 0.45) 100%),
                url('../images/backgrounds/banner1.jpg') center/cover;
    display: flex;
    align-items: center;
    color: var(--white);
    padding: 0;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4%;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-align: left;
}

.hero-text {
    max-width: 600px;
    padding: 0 1rem;
}

.hero-text h2 {
    font-size: 3.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-text p {
    font-size: 1.6rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Removendo estilos não utilizados da hero-image */
.hero-image {
    display: none;
}

.cta-btn {
    background: var(--primary-color);
    color: var(--white);
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-btn:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Serviços */
.services {
    padding: 6rem 1rem;
    background: var(--light-gray);
}

.services h2 {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 2.8rem;
    color: var(--secondary-color);
    font-weight: 700;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.service-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 350px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

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

.service-card h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-card .cta-btn {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.9rem 2rem;
    font-size: 0.95rem;
}

/* Modal de Cotação */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    overflow-y: auto;
    padding: 20px 0;
}

.modal-content {
    position: relative;
    background: var(--white);
    max-width: 700px;
    margin: 2rem auto;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: modalSlideIn 0.3s ease;
    max-height: calc(100vh - 4rem);
    overflow-y: auto;
}

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

.close-btn {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
}

.modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.modal-header h2 {
    color: var(--secondary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.modal-header p {
    color: var(--text-color);
    font-size: 1.1rem;
    opacity: 0.8;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
    background-color: #f8f9fa;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--primary-color);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(0, 161, 228, 0.1);
    outline: none;
}

.submit-btn {
    width: 100%;
    background: var(--primary-color);
    color: var(--white);
    padding: 1.2rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    cursor: pointer;
    margin-top: 1rem;
}

.submit-btn:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Contato */
.contact {
    padding: 6rem 1rem;
    background: var(--white);
}

.contact h2 {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 2.8rem;
    color: var(--secondary-color);
    font-weight: 700;
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem 1.2rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 161, 228, 0.1);
    outline: none;
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form button {
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    cursor: pointer;
}

.contact-form button:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 4rem 1rem 2rem;
}

.footer h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: var(--white);
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

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

.footer-bottom .dev-credit {
    display: block;
    margin-top: 0.5rem;
    color: var(--primary-color);
    font-weight: 500;
    opacity: 0.9;
}

.footer-bottom .dev-credit:hover {
    opacity: 1;
    color: var(--white);
    transition: all 0.3s ease;
}

/* Benefícios */
.benefits {
    padding: 6rem 1rem;
    background: var(--white);
}

.benefits h2 {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 2.8rem;
    color: var(--secondary-color);
    font-weight: 700;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
    transition: transform 0.3s;
}

.benefit-item:hover {
    transform: translateY(-10px);
}

.benefit-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.benefit-item h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.benefit-item p {
    color: var(--text-color);
    font-size: 1.1rem;
}

/* Ajustes no footer */
.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 1rem;
}

.footer-section ul a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul a:hover {
    color: var(--primary-color);
}

.footer-section p {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section p i {
    color: var(--primary-color);
}

/* Ajustes na seção de contato */
.info-content {
    text-align: left;
}

.info-content h3 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.info-item {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 10px;
    transition: transform 0.3s;
}

.info-item:hover {
    transform: translateY(-5px);
}

.info-item i {
    font-size: 2rem;
    margin-right: 1.5rem;
}

/* Animações */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 1s ease-in;
}

/* Operadoras Parceiras */
.partners {
    padding: 4rem 1rem;
    background: var(--white);
    text-align: center;
}

.partners h2 {
    font-size: 2.2rem;
    color: var(--secondary-color);
    margin-bottom: 3rem;
    font-weight: 700;
}

.partners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.partner-item {
    flex: 0 1 250px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 180px;
}

.partner-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.partner-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-width: none;
    padding: 0.5rem;
}

@media (max-width: 768px) {
    .partners-grid {
        gap: 2rem;
    }
    
    .partner-item {
        flex: 0 1 200px;
        height: 150px;
    }
}

/* Features dos planos */
.plan-features {
    list-style: none;
    margin: 1.5rem 0;
    text-align: left;
}

.plan-features li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-color);
}

.plan-features li i {
    color: var(--primary-color);
    font-size: 1rem;
}

/* Depoimentos */
.testimonials {
    padding: 6rem 1rem;
    background: var(--light-gray);
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 2.8rem;
    color: var(--secondary-color);
    font-weight: 700;
}

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

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content i {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-color);
    line-height: 1.6;
}

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

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

.testimonial-author h4 {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.testimonial-author p {
    color: var(--text-color);
    font-size: 0.9rem;
}

/* Ajustes no modal de contato */
#contatoModal .modal-content {
    max-width: 800px;
    padding: 3rem;
}

#contatoModal .contact-container {
    margin-top: 2rem;
}

/* Ajustes no footer */
.footer-bottom small {
    display: block;
    margin-top: 1rem;
    opacity: 0.8;
    font-size: 0.85rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .quote-btn {
        margin: 1rem 0;
    }

    .partners-grid {
        gap: 2rem;
    }

    .partner-item {
        flex: 0 1 150px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .modal-content {
        margin: 1rem;
        padding: 2rem;
        max-height: calc(100vh - 2rem);
    }
}

/* Depoimentos Carrossel */
.testimonials-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    padding: 2rem 0;
}

.testimonials-container {
    display: flex;
    transition: transform 0.5s ease;
    gap: 32px;
    width: max-content;
}

.testimonial-card {
    flex: 0 0 auto;
    width: calc((100vw - 64px) / 3);
    max-width: 360px;
    min-width: 280px;
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin: 0;
}

@media (max-width: 1200px) {
    .testimonial-card {
        width: calc((100vw - 64px) / 2);
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        width: calc(100vw - 64px);
    }
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

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

.carousel-btn.prev {
    left: 1rem;
}

.carousel-btn.next {
    right: 1rem;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* Página de Contato */
.contact-hero {
    height: 40vh;
    background: linear-gradient(rgba(0, 75, 141, 0.9), rgba(0, 161, 228, 0.9)),
                url('../images/backgrounds/contact-bg.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 0;
}

.contact-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-main {
    padding: 4rem 1rem;
}

.contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.info-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.info-card .highlight {
    color: var(--primary-color);
    font-weight: 500;
    margin-top: 0.5rem;
}

.map-section {
    padding: 4rem 0;
    background: var(--light-gray);
}

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

/* Modal de Cotação - Novos Estilos */
.modal-content {
    max-width: 700px;
}

.form-group.dependentes-group,
.form-group.plano-atual-group {
    display: none;
}

.form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
    background-color: #f8f9fa;
    resize: vertical;
}

.form-group textarea:focus {
    border-color: var(--primary-color);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(0, 161, 228, 0.1);
    outline: none;
}

@media (max-width: 768px) {
    .contact-hero {
        height: 30vh;
        margin-top: 70px;
    }

    .contact-hero-content h1 {
        font-size: 2.5rem;
    }

    .carousel-btn {
        width: 35px;
        height: 35px;
    }

    .testimonial-card {
        min-width: calc(100% - 2rem);
    }
}

/* Página Sobre */
.about-hero {
    height: 60vh;
    background: linear-gradient(rgba(0, 75, 141, 0.85), rgba(0, 161, 228, 0.85)),
                url('../images/backgrounds/about-bg.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 90px;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: var(--white);
    transform: skewY(-3deg);
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

.about-hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
}

.about-hero-content p {
    font-size: 1.8rem;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    line-height: 1.4;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-story {
    padding: 8rem 1rem;
    background: var(--white);
    position: relative;
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.story-content h2 {
    font-size: 3.2rem;
    color: var(--secondary-color);
    margin-bottom: 2.5rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.story-content h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.story-content p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 2rem;
    opacity: 0.9;
}

.story-numbers {
    display: flex;
    justify-content: center;
    gap: 6rem;
    margin-top: 6rem;
    flex-wrap: nowrap;
}

.number-item {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    min-width: 200px;
}

.number-item:hover {
    transform: translateY(-10px);
}

.number-item .number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 1rem;
    line-height: 1;
}

.number-item p {
    font-size: 1.2rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin: 0;
}

.about-values {
    padding: 8rem 1rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.values-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: nowrap;
    margin-top: 4rem;
    padding: 0 2rem;
}

.value-item {
    flex: 1;
    text-align: center;
    padding: 3rem 2rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 250px;
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-15px);
}

.value-item:hover::before {
    transform: scaleX(1);
}

.value-item i {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.value-item:hover i {
    transform: scale(1.2);
}

.value-item h3 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.value-item p {
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.6;
    opacity: 0.9;
}

.about-differentials {
    padding: 8rem 1rem;
    background: var(--white);
    position: relative;
}

.differentials-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: nowrap;
    margin-top: 4rem;
}

.differential-item {
    flex: 1;
    padding: 3rem 2.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    transition: all 0.3s ease;
    min-width: 300px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.differential-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.differential-content h3 {
    font-size: 1.6rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
}

.differential-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.differential-content p {
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.7;
    opacity: 0.9;
}

@media (max-width: 1200px) {
    .values-grid,
    .differentials-grid {
        flex-wrap: wrap;
    }

    .value-item,
    .differential-item {
        min-width: calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 3rem;
    }

    .about-hero-content p {
        font-size: 1.4rem;
    }

    .story-numbers {
        flex-direction: column;
        gap: 2rem;
    }

    .value-item,
    .differential-item {
        min-width: 100%;
    }

    .number-item {
        width: 100%;
    }
}

/* Seção Time */
.about-team {
    padding: 8rem 1rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.about-team h2 {
    text-align: center;
    font-size: 3.2rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.about-team h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.team-intro {
    text-align: center;
    font-size: 1.3rem;
    color: var(--text-color);
    max-width: 800px;
    margin: 0 auto 4rem;
    line-height: 1.8;
    opacity: 0.9;
}

.team-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: nowrap;
}

.stat-item {
    text-align: center;
    padding: 3rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    min-width: 250px;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
}

.stat-item:hover::before {
    transform: scaleX(1);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 1rem;
    line-height: 1;
}

.stat-item p {
    font-size: 1.2rem;
    color: var(--secondary-color);
    font-weight: 600;
}

/* Seção Reconhecimento */
.about-recognition {
    padding: 8rem 1rem;
    background: var(--white);
    position: relative;
}

.about-recognition h2 {
    text-align: center;
    font-size: 3.2rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.about-recognition h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.recognition-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.recognition-content > p {
    font-size: 1.3rem;
    color: var(--text-color);
    margin-bottom: 4rem;
    line-height: 1.8;
    opacity: 0.9;
}

.recognition-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: nowrap;
}

.recognition-item {
    flex: 1;
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 250px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.recognition-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.recognition-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.recognition-item:hover::before {
    transform: scaleX(1);
}

.recognition-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.recognition-item:hover i {
    transform: scale(1.2);
}

.recognition-item h4 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.recognition-item p {
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.6;
    opacity: 0.9;
}

/* Ajustes de responsividade para as novas seções */
@media (max-width: 1200px) {
    .team-stats,
    .recognition-grid {
        flex-wrap: wrap;
    }

    .stat-item,
    .recognition-item {
        min-width: calc(50% - 2rem);
    }
}

@media (max-width: 768px) {
    .about-team h2,
    .about-recognition h2 {
        font-size: 2.5rem;
    }

    .team-intro {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .team-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .stat-item,
    .recognition-item {
        min-width: 100%;
        padding: 2rem;
    }

    .stat-number {
        font-size: 3rem;
    }

    .recognition-grid {
        flex-direction: column;
        gap: 2rem;
    }
} 