.elementor-804 .elementor-element.elementor-element-1aa05e6{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS */:root {
    --color-navy: #1d291e;
    --color-gold: #253b07;
    --color-white: #ffffff;
    --color-text: #11161b;
    --color-text-light: #666666;
    --gradient-primary: linear-gradient(135deg, var(--color-navy) 0%, #000000 100%);
    --gradient-gold: linear-gradient(135deg, var(--color-gold) 0%, #253b07 100%);
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
    --font-primary: 'Outfit', sans-serif;
    --font-heading: 'Outfit', sans-serif;

/* Reset e Estilos Globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-white);
}

h4{
    color: white !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-navy);
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}


/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    display: block;
    text-decoration: none;
}

.logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

@media (max-width: 768px) {
    .logo img {
        height: 40px;
    }
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--color-gold);
}

.nav-links a:hover::after {
    width: 100%;
}

.cta-button {
    padding: 0.75rem 1.5rem;
    background: var(--gradient-primary);
    color: var(--color-white);
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    padding: 8rem 2rem 4rem;
    background: var(--color-white);
    overflow: hidden;
}

.hero-content {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    z-index: 2;
}

.hero-text {
    max-width: 650px;
    margin-bottom: 4rem;
}

.hero-text h2 {
    font-family: var(--font-primary);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-navy);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-text h3 {
    font-size: 1.5rem;
    color: var(--color-gold);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero-text p {
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.primary-button, .secondary-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.primary-button {
    background: var(--gradient-gold);
    color: var(--color-white);
}

.secondary-button {
    background: transparent;
    border: 2px solid var(--color-navy);
    color: var(--color-navy);
}

.primary-button:hover, .secondary-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-navy);
    line-height: 1;
    display: inline-block;
}

.stat-suffix {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-gold);
    margin-left: 2px;
}

.stat-label {
    font-size: 1rem;
    color: var(--color-text);
    margin-top: 0.5rem;
    text-align: center;
}

@media (max-width: 768px) {
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .stat-card {
        width: 100%;
    }
}

.hero-image {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    width: 400px;
    height: auto;
    z-index: 1;
    animation: floatImage 6s ease-in-out infinite;
}

.hero-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 30px;
}

.hero-shape {
    position: absolute;
    top: -10%;
    right: -5%;
    width: 800px;
    height: 800px;
    z-index: 2;
    opacity: 0.1;
    animation: floatShape 6s ease-in-out infinite;
}

/* Animação de flutuação para a imagem */
@keyframes floatImage {
    0% {
        transform: translateY(-50%) translateY(0);
    }
    50% {
        transform: translateY(-50%) translateY(-20px);
    }
    100% {
        transform: translateY(-50%) translateY(0);
    }
}

/* Animação de flutuação para a shape */
@keyframes floatShape {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-30px);
    }
    100% {
        transform: translateY(0);
    }
}

/* Responsividade */
@media (max-width: 1200px) {
    .hero-image {
        width: 350px;
        right: 5%;
    }
    
    .hero-shape {
        width: 600px;
        height: 600px;
    }
}

@media (max-width: 992px) {
    .hero-image {
        width: 300px;
    }
    
    .hero-shape {
        width: 500px;
        height: 500px;
    }
}

@media (max-width: 768px) {
    .hero-image {
        position: relative;
        width: 250px;
        margin: 2rem auto;
        right: auto;
        top: auto;
        transform: none;
        animation: floatMobile 6s ease-in-out infinite;
    }
    
    .hero-shape {
        display: none;
    }
}

/* Animação para mobile */
@keyframes floatMobile {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0);
    }
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--color-navy) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.05;
    z-index: 1;
}

/* Services Section */
.services {
    padding: 6rem 0 2rem;
    background-color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.services-container {
    max-width: 100%;
    padding: 0 2rem;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 0 2rem;
}

.section-header h2 {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    color: var(--color-navy);
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--color-text-light);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

.services-carousel {
    position: relative;
    padding: 0 60px;
}

.services-grid {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 1rem 0;
    margin: 0 -2rem;
    padding: 1rem 2rem;
}

.services-grid::-webkit-scrollbar {
    display: none;
}

.service-category {
    min-width: 380px;
    background: var(--color-white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-gold);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-category:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-category:hover::before {
    opacity: 1;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-white);
    border: none;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-button:hover {
    background: var(--color-navy);
    color: var(--color-white);
    box-shadow: var(--shadow-lg);
}

.carousel-button.prev {
    left: 20px;
}

.carousel-button.next {
    right: 20px;
}

.carousel-button i {
    font-size: 1.25rem;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(70, 85, 100, 0.1);
}

.category-header i {
    font-size: 1.5rem;
    color: var(--color-gold);
    background: rgba(218, 160, 122, 0.1);
    padding: 1rem;
    border-radius: 12px;
}

.category-header h3 {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    color: var(--color-navy);
}

.service-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-text);
    font-size: 0.95rem;
}

.service-list i {
    color: var(--color-gold);
    font-size: 0.875rem;
}

/* About Section */
.about {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.about-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
    position: relative;
}

.about-content {
    flex: 1;
    max-width: 600px;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--color-navy);
    margin-bottom: 2rem;
    position: relative;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.about-intro {
    font-size: 1.1rem;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.about-mission {
    font-size: 1rem;
    color: var(--color-text-light);
    margin-bottom: 3rem;
    line-height: 1.7;
}

.about-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.about-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.about-card i {
    font-size: 2rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.about-card h3 {
    font-size: 1.1rem;
    color: var(--color-navy);
    margin-bottom: 0.5rem;
}

.about-card p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.5;
}

.about-image-wrapper {
    position: relative;
    width: 500px;
    height: 600px;
}

.about-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    z-index: 2;
    animation: floatAboutImage 6s ease-in-out infinite;
}

.about-shape {
    position: absolute;
    width: 120%;
    height: 120%;
    top: -10%;
    right: -10%;
    z-index: 1;
    opacity: 0.1;
    animation: floatAboutShape 6s ease-in-out infinite;
    animation-delay: -3s;
}

.about-shape svg {
    width: 100%;
    height: 100%;
}

@keyframes floatAboutImage {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes floatAboutShape {
    0% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-30px) scale(1.05);
    }
    100% {
        transform: translateY(0) scale(1);
    }
}

/* Responsividade */
@media (max-width: 1200px) {
    .about-container {
        gap: 2rem;
    }

    .about-image-wrapper {
        width: 400px;
        height: 500px;
    }
}

@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-text h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .about-cards {
        grid-template-columns: repeat(3, 1fr);
    }

    .about-image-wrapper {
        width: 350px;
        height: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 4rem 1.5rem;
    }

    .about-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .about-image-wrapper {
        width: 300px;
        height: 350px;
    }
}

/* Team Section */
.team {
    padding: 8rem 2rem;
    background: var(--color-white);
    position: relative;
    overflow: hidden;
}

.team-container {
    max-width: 1280px;
    margin: 0 auto;
}

.team-header {
    text-align: center;
    margin-bottom: 4rem;
}

.team-header h2 {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    color: var(--color-navy);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.team-header h2::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.team-member {
    position: relative;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.member-info {
    padding: 2rem;
    background: white;
}

.member-name {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    color: var(--color-navy);
    margin-bottom: 0.5rem;
}

.member-title {
    font-size: 1rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.member-oab {
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

.member-bio {
    font-size: 0.95rem;
    color: var(--color-text);
    line-height: 1.6;
}

/* Responsive adjustments for about section */
@media (max-width: 1024px) {
    .about-content {
        gap: 2rem;
    }

    .floating-card {
        width: 150px;
        padding: 1rem;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 4rem 1.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-text {
        padding-right: 0;
    }

    .about-shape {
        height: 500px;
    }

    .floating-card {
        width: 130px;
    }

    .card-1 { left: -30px; }
    .card-2 { right: -30px; }
    .card-4 { left: -30px; }
}

@media (max-width: 480px) {
    .about-text h2 {
        font-size: 2rem;
    }

    .about-intro,
    .about-mission {
        font-size: 1rem;
    }

    .about-shape {
        height: 400px;
    }

    .floating-card {
        width: 120px;
        padding: 0.875rem;
    }

    .floating-card i {
        font-size: 1.5rem;
        padding: 0.75rem;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-text h2 {
        font-size: 3rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .services-grid {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .nav-links, .cta-button {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-text h2 {
        font-size: 2.5rem;
    }
    
    .hero-text h3 {
        font-size: 1.25rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-card {
        padding: 1.5rem;
    }
    
    .services {
        padding: 4rem 1.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .services-grid {
        gap: 1rem;
    }

    .service-category {
        min-width: 300px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .logo-text h1 {
        font-size: 1.25rem;
    }
    
    .hero {
        padding: 6rem 1rem 3rem;
    }
    
    .hero-text h2 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }

    .category-header {
        flex-direction: column;
        text-align: center;
    }
}

/* FAQ Section */
.faq {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-header h2 {
    font-size: 2.5rem;
    color: var(--color-navy);
    margin-bottom: 1rem;
}

.faq-header p {
    font-size: 1.1rem;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.accordion-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.accordion-button {
    width: 100%;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.accordion-button span {
    font-size: 1.1rem;
    color: var(--color-navy);
    font-weight: 500;
    text-align: left;
}

.accordion-button i {
    color: var(--color-gold);
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-button i {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
}

.accordion-item.active .accordion-content {
    max-height: 300px;
    padding: 0 1.5rem 1.5rem;
}

.accordion-content p {
    color: var(--color-text-light);
    line-height: 1.6;
    margin: 0;
}

/* Hover Effects */
.accordion-button:hover {
    background: rgba(218, 160, 122, 0.05);
}

.accordion-button:hover span {
    color: var(--color-gold);
}

/* Responsive */
@media (max-width: 768px) {
    .faq {
        padding: 4rem 1.5rem;
    }

    .faq-header h2 {
        font-size: 2rem;
    }

    .accordion-button {
        padding: 1.25rem;
    }

    .accordion-button span {
        font-size: 1rem;
    }
}

/* Why Us Section */
.why-us {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(45deg, rgba(70, 85, 100, 0.03) 0%, rgba(218, 160, 122, 0.03) 100%);
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0% 100%);
}

.why-us-container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.why-us-header {
    text-align: center;
    margin-bottom: 4rem;
}

.why-us-header h2 {
    font-size: 2.5rem;
    color: var(--color-navy);
    margin-bottom: 1rem;
    font-weight: 600;
}

.why-us-header p {
    font-size: 1.1rem;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-icon {
    font-size: 2rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.stat-content {
    position: relative;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 0.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.stat-suffix {
    font-size: 1.5rem;
    color: var(--color-gold);
    margin-left: 0.25rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--color-text-light);
    font-weight: 500;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(218, 160, 122, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(218, 160, 122, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--color-gold);
}

.feature-card h3 {
    font-size: 1.25rem;
    color: var(--color-navy);
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card p {
    color: var(--color-text-light);
    line-height: 1.6;
    margin: 0;
}

/* CTA Box */
.cta-box {
    background: var(--gradient-primary);
    padding: 4rem;
    border-radius: 30px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('pattern.png') repeat;
    opacity: 0.05;
}

.cta-box h3 {
    font-size: 2rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 600;
}

.cta-box p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--color-gold);
    color: white;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Responsividade */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .cta-box {
        padding: 3rem 2rem;
    }
}

/* Footer */
.footer {
    position: relative;
    background: var(--color-navy);
    color: white;
    padding: 6rem 2rem 2rem;
    margin-top: 4rem;
}

.footer-shape {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: var(--color-navy);
    border-radius: 30px 30px 0 0;
    transform: translateY(-50%);
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4rem;
    margin-bottom: 4rem;
}

/* Logo e Sobre */
.footer-logo h3 {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    color: var(--color-gold);
    margin: 0;
}

.footer-logo span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-about {
    margin: 1.5rem 0;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--color-gold);
    transform: translateY(-3px);
}

/* Colunas de Links */
.footer-col h4 {
    font-family: var(--font-primary);
    color: var(--color-gold);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--color-gold);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.footer-links a:hover {
    color: var(--color-gold);
    transform: translateX(5px);
}

/* Informações de Contato */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-item i {
    color: var(--color-gold);
    font-size: 1.2rem;
    margin-top: 0.3rem;
}

.contact-item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Certificações */
.certifications {
    display: flex;
    justify-content: center;
    gap: 4rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
}

.cert-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.cert-item i {
    color: var(--color-gold);
    font-size: 1.5rem;
}

.cert-item span {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Copyright e Links Legais */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
}

.copyright p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.legal-links {
    display: flex;
    gap: 2rem;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: var(--color-gold);
}

/* Responsividade do Footer */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 4rem 2rem 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .certifications {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .legal-links {
        justify-content: center;
    }
}

/* Blog Section */
.blog {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.blog-container {
    max-width: 1280px;
    margin: 0 auto;
}

.blog-header {
    text-align: center;
    margin-bottom: 4rem;
}

.blog-header h2 {
    font-size: 2.5rem;
    color: var(--color-navy);
    margin-bottom: 1rem;
    position: relative;
}

.blog-header h2::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.blog-header p {
    font-size: 1.1rem;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.blog-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--color-gold);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.blog-card-content {
    padding: 1.5rem;
}

.blog-card-content h3 {
    font-size: 1.1rem;
    color: var(--color-navy);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.blog-card-content p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.blog-date {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

.blog-read-more {
    color: var(--color-gold);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.blog-read-more:hover {
    color: var(--color-navy);
}

.blog-read-more i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.blog-read-more:hover i {
    transform: translateX(3px);
}

.blog-cta {
    text-align: center;
}

/* Responsividade do Blog */
@media (max-width: 1200px) {
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog {
        padding: 4rem 1.5rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .blog-card-image {
        height: 180px;
    }
}/* End custom CSS */