/* Reset e estilos gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #3D0097; /* Roxo PMI */
    --secondary-color: #FF7B01; /* Laranja PMI */
    --dark-blue: #004976; /* Azul escuro PMI */
    --light-blue: #e6f4f9; /* Azul claro para backgrounds */
    --light-purple: #f5f0ff; /* Roxo claro para backgrounds */
    --gray: #f5f5f5;
    --dark-gray: #333;
    --white: #fff;
    --black: #000;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --box-shadow: 0 10px 30px rgba(61, 0, 151, 0.1);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

html {
    scroll-behavior: smooth;
}

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

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

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

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

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

ul {
    list-style: none;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
}

.section-header h2 {
    font-size: 2.8rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    letter-spacing: -0.5px;
}

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

.section-header p {
    font-size: 1.25rem;
    color: var(--dark-gray);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.section-header::before {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    background-color: rgba(255, 123, 1, 0.05);
    border-radius: 50%;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary-color), #FF9A40);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-family: var(--font-heading);
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 6px 15px rgba(255, 123, 1, 0.25);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, #e66f00, var(--secondary-color));
    transition: var(--transition);
    z-index: -1;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 123, 1, 0.3);
}

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

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--white);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-family: var(--font-heading);
    border: 2px solid var(--white);
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

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

.btn-secondary:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
}

.header.scrolled {
    padding: 12px 0;
    box-shadow: 0 5px 20px rgba(61, 0, 151, 0.1);
}

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

.logo {
    position: relative;
    z-index: 2;
}

.logo img {
    height: 50px;
    max-width: 180px;
    object-fit: contain;
    transition: var(--transition);
}

.header.scrolled .logo img {
    height: 45px;
}

.nav ul {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav ul li a {
    font-family: var(--font-heading);
    font-weight: 600;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.8px;
    padding: 8px 0;
    position: relative;
    color: var(--dark-gray);
}

.nav ul li a:hover {
    color: var(--secondary-color);
}

.nav ul li a:not(.btn-primary)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    bottom: 0;
    left: 0;
    transition: width 0.3s cubic-bezier(0.65, 0, 0.35, 1);
    border-radius: 2px;
}

.nav ul li a:not(.btn-primary):hover::after {
    width: 100%;
}

/* Estilo específico para o botão de contato no menu de navegação */
.nav ul li a.btn-primary {
    padding: 10px 20px;
    margin-left: 15px;
    background: linear-gradient(135deg, var(--secondary-color), #FF9A40);
    font-size: 0.8rem;
    box-shadow: 0 4px 10px rgba(255, 123, 1, 0.2);
}

.nav ul li a.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 123, 1, 0.3);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 180px 0 120px;
    background-color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color) 0%, #2a006b 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 123, 1, 0.2) 0%, rgba(255, 123, 1, 0) 70%);
    border-radius: 50%;
    top: -100px;
    right: -100px;
}

.hero::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 123, 1, 0.1) 0%, rgba(255, 123, 1, 0) 70%);
    border-radius: 50%;
    bottom: -200px;
    left: -200px;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
    animation: fadeInUp 1s ease-out;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 25px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-image {
    flex: 1;
    text-align: center;
    position: relative;
    animation: fadeInRight 1s ease-out;
}

.hero-image::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 123, 1, 0.2) 0%, rgba(255, 123, 1, 0) 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.hero-image img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    height: auto;
    object-fit: cover;
    transform: perspective(1000px) rotateY(-5deg);
    transition: var(--transition);
}

.hero-image:hover img {
    transform: perspective(1000px) rotateY(0deg);
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Sobre Section */
.sobre {
    padding: 100px 0;
    background-color: var(--white);
}

.sobre-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.sobre-content-full {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.sobre-content-full::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background-color: rgba(61, 0, 151, 0.03);
    border-radius: 50%;
    top: -50px;
    right: -100px;
    z-index: -1;
}

.sobre-text {
    flex: 1;
}

.sobre-text p,
.sobre-content-full p {
    margin-bottom: 25px;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #444;
}

.missao-visao {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.missao, .visao, .proposito {
    background-color: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border-top: 4px solid var(--secondary-color);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.missao::before, .visao::before, .proposito::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(180deg, rgba(255, 123, 1, 0.05) 0%, rgba(255, 123, 1, 0) 100%);
    transition: var(--transition);
    z-index: -1;
}

.missao:hover, .visao:hover, .proposito:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.missao:hover::before, .visao:hover::before, .proposito:hover::before {
    height: 100%;
}

.missao h3, .visao h3, .proposito h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1.4rem;
    position: relative;
    display: inline-block;
}

.missao h3::after, .visao h3::after, .proposito h3::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: var(--secondary-color);
    bottom: -5px;
    left: 0;
    border-radius: 2px;
}

.sobre-image {
    flex: 1;
}

.sobre-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

/* Benefícios Section */
.beneficios {
    padding: 100px 0;
    background-color: var(--gray);
}

.beneficios-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

/* Estilo específico para a seção de Quem pode ser um gestor */
#beneficios .beneficios-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 35px;
    max-width: 1100px;
    margin: 0 auto;
}

#beneficios .beneficios-cards .card {
    flex: 0 0 calc(33.33% - 24px);
    max-width: calc(33.33% - 24px);
}

#beneficios .beneficios-cards .card:nth-child(4),
#beneficios .beneficios-cards .card:nth-child(5) {
    flex: 0 0 calc(40% - 24px);
    max-width: calc(40% - 24px);
    margin-top: 20px;
}

/* Estilo específico para a seção de Mercado e Oportunidades */
#mercado .beneficios-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 35px;
    max-width: 1100px;
    margin: 0 auto;
}

#mercado .beneficios-cards .card {
    flex: 0 0 calc(33.33% - 24px);
    max-width: calc(33.33% - 24px);
}

#mercado .beneficios-cards .card:nth-child(4),
#mercado .beneficios-cards .card:nth-child(5) {
    flex: 0 0 calc(40% - 24px);
    max-width: calc(40% - 24px);
    margin-top: 20px;
}

.card {
    background-color: var(--white);
    padding: 35px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    text-align: center;
    border-top: 4px solid var(--secondary-color);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(180deg, rgba(255, 123, 1, 0.03) 0%, rgba(255, 123, 1, 0) 100%);
    transition: var(--transition);
    z-index: -1;
}

.card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-top-color: var(--primary-color);
}

.card:hover::before {
    height: 100%;
}

.card-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 25px;
    transition: var(--transition);
    background: rgba(255, 123, 1, 0.1);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 25px;
}

.card:hover .card-icon {
    color: var(--primary-color);
    transform: rotateY(180deg);
    background: rgba(61, 0, 151, 0.1);
}

.card h3 {
    font-size: 1.6rem;
    color: var(--dark-gray);
    margin-bottom: 18px;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.card h3::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    transition: var(--transition);
}

.card:hover h3::after {
    width: 60px;
}

.card p {
    color: #555;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Carreira Section */
.carreira {
    padding: 100px 0;
    background-color: var(--white);
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding-left: 10px;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 2px;
    background-color: var(--secondary-color);
    top: 30px;
    bottom: 30px;
    left: 40px;
    border-radius: 2px;
}

.timeline-item {
    display: flex;
    margin-bottom: 50px;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.timeline-item:last-child {
    margin-bottom: 30px;
}

.timeline-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.timeline-number-container {
    position: relative;
    width: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.timeline-number {
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.4rem;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(255, 123, 1, 0.2);
    position: relative;
    font-family: var(--font-heading);
    z-index: 3;
}

/* Setas removidas */

.timeline-content {
    margin-left: 15px;
    background-color: var(--white);
    padding: 25px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    flex: 1;
    transition: var(--transition);
    border-left: 3px solid var(--secondary-color);
    position: relative;
    z-index: 1;
}

.timeline-content::before {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: var(--white);
    transform: rotate(45deg);
    left: -6px;
    top: 24px;
    border-left: 3px solid var(--secondary-color);
    border-bottom: 3px solid var(--secondary-color);
    border-top: 0;
    border-right: 0;
}

.timeline-content:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.timeline-content h3 {
    color: var(--secondary-color);
    margin-bottom: 12px;
    font-size: 1.3rem;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.timeline-content h3::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: var(--secondary-color);
    bottom: -6px;
    left: 0;
    border-radius: 1px;
}

.timeline-content p {
    color: #555;
    line-height: 1.6;
    font-size: 1rem;
}

/* Depoimentos Section */
.depoimentos {
    padding: 100px 0;
    background-color: var(--gray);
}

.depoimentos-slider {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.depoimento {
    background-color: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: var(--transition);
    border-left: 4px solid var(--secondary-color);
    position: relative;
    overflow: hidden;
}

.depoimento::before {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 123, 1, 0.05) 0%, rgba(255, 123, 1, 0) 70%);
    border-radius: 50%;
    top: -50px;
    right: -50px;
    z-index: 0;
}

.depoimento::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(61, 0, 151, 0.05) 0%, rgba(61, 0, 151, 0) 70%);
    border-radius: 50%;
    bottom: -30px;
    left: -30px;
    z-index: 0;
}

.depoimento-content {
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.depoimento-content::before {
    content: '"';
    font-size: 6rem;
    color: var(--secondary-color);
    opacity: 0.1;
    position: absolute;
    top: -40px;
    left: -15px;
    font-family: Georgia, serif;
}

.depoimento-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #444;
}

.depoimento-author {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.depoimento-author img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-right: 20px;
    object-fit: cover;
    border: 3px solid var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.author-info h4 {
    color: var(--secondary-color);
    margin-bottom: 5px;
    font-size: 1.2rem;
    font-weight: 600;
}

.author-info p {
    color: #666;
    font-size: 0.95rem;
}

.depoimentos-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.depoimentos-nav button {
    background-color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    font-size: 1.2rem;
}

.depoimentos-nav button:hover {
    background: linear-gradient(135deg, var(--secondary-color), #FF9A40);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 123, 1, 0.2);
}

/* Contato Section */
.contato {
    padding: 100px 0;
    background-color: var(--white);
}

.contato-content {
    display: flex;
    gap: 60px;
    position: relative;
}

.contato-content::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 123, 1, 0.05) 0%, rgba(255, 123, 1, 0) 70%);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    z-index: -1;
}

.contato-form {
    flex: 2;
    background-color: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.contato-form::before {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(61, 0, 151, 0.03) 0%, rgba(61, 0, 151, 0) 70%);
    border-radius: 50%;
    bottom: -50px;
    left: -50px;
    z-index: -1;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--dark-gray);
    font-family: var(--font-heading);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
    background-color: #fafafa;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(255, 123, 1, 0.1);
    background-color: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contato-form button {
    width: 100%;
    padding: 16px;
    font-size: 1rem;
    margin-top: 10px;
}

.contato-info {
    flex: 1;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2a006b 100%);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.contato-info::before {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    top: -50px;
    right: -50px;
}

.contato-info::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    bottom: -30px;
    left: -30px;
}

.contato-info h3 {
    color: var(--white);
    margin-bottom: 30px;
    font-size: 1.8rem;
    position: relative;
    display: inline-block;
}

.contato-info h3::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background-color: var(--secondary-color);
    bottom: -10px;
    left: 0;
    border-radius: 2px;
}

.contato-info p {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.9);
}

.contato-info p i {
    margin-right: 15px;
    color: var(--secondary-color);
    font-size: 1.2rem;
    width: 25px;
    text-align: center;
}

.social-media {
    display: flex;
    gap: 15px;
    margin-top: 40px;
}

.social-media a {
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
    font-size: 1.2rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.social-media a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-color), #FF9A40);
    transition: var(--transition);
    z-index: -1;
}

.social-media a:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.social-media a:hover::before {
    width: 100%;
}

/* FAQ Section */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 30px;
    background-color: var(--white);
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border-left: 4px solid var(--secondary-color);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.faq-item::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 0;
    background: linear-gradient(180deg, rgba(255, 123, 1, 0.03) 0%, rgba(255, 123, 1, 0) 100%);
    top: 0;
    left: 0;
    transition: var(--transition);
    z-index: -1;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.faq-item:hover::before {
    height: 100%;
}

.faq-item h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.faq-item h3::before {
    content: 'Q';
    position: absolute;
    font-size: 3rem;
    color: rgba(255, 123, 1, 0.05);
    top: -25px;
    left: -15px;
    font-weight: 700;
    z-index: -1;
}

.faq-item p {
    color: #555;
    line-height: 1.7;
    font-size: 1.05rem;
    position: relative;
    padding-left: 0;
}

.faq-item p::before {
    content: '';
    position: absolute;
    width: 3px;
    height: 0;
    background-color: var(--secondary-color);
    left: -5px;
    top: 0;
    transition: var(--transition);
    opacity: 0.5;
    border-radius: 3px;
}

.faq-item:hover p::before {
    height: 100%;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 90px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 123, 1, 0.1) 0%, rgba(255, 123, 1, 0) 70%);
    border-radius: 50%;
    top: -150px;
    right: -150px;
}

.footer::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    bottom: -100px;
    left: -100px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.footer-logo {
    flex: 2;
}

.footer-logo img {
    height: 55px;
    max-width: 200px;
    object-fit: contain;
    margin-bottom: 25px;
    background-color: white;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.footer-logo p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    max-width: 400px;
}

.footer-links {
    flex: 1;
}

.footer-links h3 {
    font-size: 1.4rem;
    margin-bottom: 25px;
    position: relative;
    color: var(--white);
    font-weight: 600;
}

.footer-links h3::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), rgba(255, 123, 1, 0.5));
    bottom: -12px;
    left: 0;
    border-radius: 2px;
}

.footer-links ul li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 0;
    transition: var(--transition);
}

.footer-links ul li a {
    transition: var(--transition);
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    display: inline-block;
}

.footer-links ul li a:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
}

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

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

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Aplicando animações */
.section-header {
    animation: fadeIn 1s ease-out;
}

.card, .faq-item, .depoimento, .contato-form, .contato-info {
    animation: slideInBottom 0.8s ease-out;
    animation-fill-mode: both;
}

.card:nth-child(1), .faq-item:nth-child(1) {
    animation-delay: 0.1s;
}

.card:nth-child(2), .faq-item:nth-child(2) {
    animation-delay: 0.2s;
}

.card:nth-child(3), .faq-item:nth-child(3) {
    animation-delay: 0.3s;
}

.card:nth-child(4), .faq-item:nth-child(4) {
    animation-delay: 0.4s;
}

.card:nth-child(5) {
    animation-delay: 0.5s;
}

.btn-primary {
    animation: pulse 2s infinite;
    animation-delay: 3s;
}

/* Responsividade */
@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 3rem;
    }

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

    .missao-visao {
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .hero {
        padding: 150px 0 100px;
    }

    .hero .container {
        flex-direction: column;
        gap: 40px;
    }

    .hero-content {
        text-align: center;
    }

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

    .hero-image img {
        max-width: 80%;
        margin: 0 auto;
    }

    .sobre-content {
        flex-direction: column;
    }

    .missao-visao {
        grid-template-columns: repeat(2, 1fr);
    }

    .contato-content {
        flex-direction: column;
    }

    .contato-info {
        margin-top: 30px;
    }

    .beneficios-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    #mercado .beneficios-cards .card {
        flex: 0 0 calc(50% - 20px);
        max-width: calc(50% - 20px);
    }

    #mercado .beneficios-cards .card:nth-child(3) {
        flex: 0 0 calc(70% - 20px);
        max-width: calc(70% - 20px);
    }

    #mercado .beneficios-cards .card:nth-child(4),
    #mercado .beneficios-cards .card:nth-child(5) {
        flex: 0 0 calc(45% - 20px);
        max-width: calc(45% - 20px);
    }

    #beneficios .beneficios-cards .card {
        flex: 0 0 calc(50% - 20px);
        max-width: calc(50% - 20px);
    }

    #beneficios .beneficios-cards .card:nth-child(3) {
        flex: 0 0 calc(70% - 20px);
        max-width: calc(70% - 20px);
    }

    #beneficios .beneficios-cards .card:nth-child(4),
    #beneficios .beneficios-cards .card:nth-child(5) {
        flex: 0 0 calc(45% - 20px);
        max-width: calc(45% - 20px);
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

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

    .section-header h2 {
        font-size: 2rem;
    }

    .missao-visao {
        grid-template-columns: 1fr;
    }

    .beneficios-cards {
        grid-template-columns: 1fr;
    }

    #mercado .beneficios-cards .card {
        flex: 0 0 100%;
        max-width: 350px;
    }

    #beneficios .beneficios-cards .card {
        flex: 0 0 100%;
        max-width: 350px;
        margin-left: 0 !important;
    }

    .timeline {
        padding-left: 0;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-number-container {
        width: 60px;
    }

    .timeline-number {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .timeline-arrow {
        right: -5px;
        width: 15px;
        top: 20px;
    }

    .timeline-arrow::before {
        width: 15px;
        height: 2px;
        top: 7px;
    }

    .timeline-arrow::after {
        width: 6px;
        height: 6px;
        top: 5px;
    }

    .timeline-content {
        margin-left: 10px;
        padding: 20px 15px;
    }

    .timeline-content::before {
        width: 10px;
        height: 10px;
        top: 20px;
        left: -5px;
    }

    .footer-content {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 130px 0 80px;
    }

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

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

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .section-header p {
        font-size: 1.1rem;
    }

    .card, .faq-item, .depoimento {
        padding: 25px;
    }

    .depoimento-author {
        flex-direction: column;
        align-items: flex-start;
    }

    .depoimento-author img {
        margin-bottom: 15px;
    }
}
