:root {
    --primary: #003F7D;
    --primary-dark: #002347;
    --primary-light: #003366;
    --secondary: #FF5003;
    --secondary-light: #FD7702;
    --secondary-dark: #FF8E00;
    --dark: #111827;
    --light: #f8f9fa;
    --gray: #6c757d;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --white: #ffffff;
    
    /* Gradientes específicos */
    --gradient-primary: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary-dark) 0%, var(--secondary) 100%);
    --gradient-blue: linear-gradient(135deg, #002347 0%, #003F7D 50%, #003366 100%);
    --gradient-orange: linear-gradient(135deg, #FF8E00 0%, #FD7702 50%, #FF5003 100%);
    --gradient-hero: linear-gradient(90deg, rgba(0, 35, 71, 0.5) 0%, rgba(0, 63, 125, 0.5) 100%);

    /* Cores adicionais para Portfolio/Courses */
    --light-bg: #f8f9fa;
    --primary-color: var(--primary); /* Consolidado para usar --primary */
    --secondary-color: var(--secondary); /* Consolidado para usar --secondary */
    --text-color: var(--gray); /* Consolidado para usar --gray */
    --dark-text: var(--dark); /* Consolidado para usar --dark */

    /* Shadows */
    --shadow-medium: rgba(0, 0, 0, 0.3);
    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-cta: rgba(0, 63, 125, 0.3);
    --shadow-cta-hover: rgba(0, 63, 125, 0.5);
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    overflow-x: hidden;
    background-color: var(--white);
    padding-top: 80px; /* Added to offset fixed header height */
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

/* General Link and Button Styles */
.btn {
    display: inline-block;
    padding: 15px 35px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s ease;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background: var(--gradient-secondary);
    color: var(--white);
    border: none;
    font-size: 18px;
}

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

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

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

/* Botões de Download do Portfólio */
.btn-download {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
}

.btn-download:hover {
    background: var(--gradient-blue);
    box-shadow: 0 10px 20px rgba(0, 63, 125, 0.3);
}

.btn-download i {
    font-size: 18px;
}

.btn-download-large {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    font-size: 20px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 20px 40px;
    border-radius: 0;
    box-shadow: 0 8px 25px rgba(0, 63, 125, 0.2);
}

.btn-download-large:hover {
    background: var(--gradient-blue);
    box-shadow: 0 15px 35px rgba(0, 63, 125, 0.4);
    transform: translateY(-5px);
}

.btn-download-large i {
    font-size: 24px;
}

.portfolio-download {
    text-align: center;
    margin-top: 40px;
    padding: 30px 0;
}

.portfolio-download-section {
    background: linear-gradient(135deg, rgba(0, 63, 125, 0.05) 0%, rgba(0, 35, 71, 0.1) 100%);
    padding: 40px 0;
    margin-bottom: 60px;
}

.download-container {
    text-align: center;
}

/* Global Hover Effects for Cards & Images */
.card, .service-card, .portfolio-item, .course-card, .client-card, .why-card, .stat-item, .value-card, .info-card, .team-card, .differential-card, .specialization-card {
    transition: all 0.4s ease;
}

.card:hover, .service-card:hover, .portfolio-item:hover, .course-card:hover, .client-card:hover, .why-card:hover, .stat-item:hover, .value-card:hover, .info-card:hover, .team-card:hover, .differential-card:hover, .specialization-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Exceções ou específicos com transform diferentes */
.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

img {
    transition: transform 0.6s ease;
}

/* Header Moderno */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

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

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    position: relative;
}

.logo1 {
    width: 250px;
    height: 60px;
    margin-right: 0px;
}

.logo span {
    color: var(--secondary);
    margin-left: 5px;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-secondary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.logo:hover::after {
    transform: scaleX(1);
}

/* Menu de Navegação */
.nav-menu {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-menu a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-secondary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-menu a:hover::after {
    transform: scaleX(1);
}

/* Overlay do Menu Mobile */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Botão do Menu Mobile */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    transition: transform 0.3s ease;
}

.nav-toggle:hover {
    transform: scale(1.1);
}

.nav-toggle i {
    font-size: 24px;
    color: var(--primary);
    transition: color 0.3s ease;
}

.nav-toggle:hover i {
    color: var(--secondary);
}

/* Hero Section Moderno */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--gradient-hero), url('../Imagens/10.jpeg');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero-container {
    display: flex;
    width: 100%;
    height: 100%;
}


.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    color: var(--white);
    padding: 20px;
}

.hero h1 {
    font-size: 44px;
    line-height: 1.2;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: slideInLeft 1s ease-out;
}

.hero p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
    animation: slideInLeft 1s ease-out 0.2s;
    animation-fill-mode: both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    animation: slideInLeft 1s ease-out 0.4s;
    animation-fill-mode: both;
}

/* Animações */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* About Section Styles */
.about {
    padding: 120px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 48px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-header .highlight {
    color: var(--secondary);
    position: relative;
}

.section-header .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-secondary);
}

.section-header p {
    font-size: 20px;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}


.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-text h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary);
}

.about-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 20px;
    text-align: justify;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
    font-family: 'Orbitron', sans-serif;
}

.stat-label {
    font-size: 16px;
    color: var(--gray);
}

.about-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: var(--gradient-secondary);
    color: var(--white);
    padding: 20px;
    border-radius: 0;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 80, 3, 0.3);
}

.experience-badge span {
    font-size: 36px;
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
}

.experience-badge p {
    font-size: 14px;
    margin-top: 5px;
}

.mobile-team-image {
    display: none;
}

.mobile-team-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

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

.value-card {
    background: var(--white);
    padding: 40px;
    border-radius: 0;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon i {
    font-size: 32px;
    color: var(--white);
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary);
}

.value-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* Services Section Styles */
.services {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: 4fr 4fr;
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px auto;
}

.service-icon i {
    font-size: 32px;
    color: var(--white);
}

.service-content {
    padding: 0 30px 30px;
    text-align: center;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary);
}

.service-content p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin: 0 0 30px;
    padding: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    color: var(--gray);
}

.service-features li i {
    color: var(--secondary);
    margin-right: 10px;
}

/* Clients Section Styles */
.clients {
    padding: 120px 0;
    background: var(--white);
    position: relative;
}

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

.client-card {
    background: var(--white);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.client-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-secondary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

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

.client-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px auto;
}

.client-icon i {
    font-size: 32px;
    color: var(--white);
}

.client-content {
    padding: 0 30px 30px;
    text-align: center;
}

.client-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary);
}

.client-content p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.client-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.client-features span {
    display: inline-block;
    padding: 8px 15px;
    background: rgba(0, 63, 125, 0.1);
    color: var(--primary);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

/* Why Us Section Styles */
.why-us {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

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

.why-card {
    background: var(--white);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-secondary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

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

.why-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px auto;
}

.why-icon i {
    font-size: 32px;
    color: var(--white);
}

.why-content {
    padding: 0 30px 30px;
    text-align: center;
}

.why-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary);
}

.why-content p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.why-features span {
    display: inline-block;
    padding: 8px 15px;
    background: rgba(255, 80, 3, 0.1);
    color: var(--secondary);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

/* Contact Section Styles */
.contact {
    padding: 100px 0;
    background: var(--white);
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e1e5e9;
    border-radius: 0;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(0, 63, 125, 0.1);
}

.form-control.error {
    border-color: var(--danger);
    background: #fff5f5;
}

.form-control.success {
    border-color: var(--success);
    background: #f0fff4;
}

.error-message {
    color: var(--danger);
    font-size: 14px;
    margin-top: 5px;
    display: block;
    min-height: 20px;
}

.form-success {
    text-align: center;
    padding: 40px 20px;
    background: #f0fff4;
    border-radius: 0;
    border: 2px solid var(--success);
}

.form-success i {
    font-size: 48px;
    color: var(--success);
    margin-bottom: 20px;
}

.form-success h3 {
    color: var(--success);
    margin-bottom: 10px;
}

.form-success p {
    color: var(--gray);
    font-size: 16px;
}

/* Footer Styles */
footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 80px 0 20px;
    position: relative;
    align-items: center;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-secondary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    margin-left: 200px;
}

.footer-about h3 {
    font-size: 28px;
    margin-bottom: 20px;
    font-family: 'Orbitron', sans-serif;
}

.footer-about h3 span {
    color: var(--secondary);
}

.footer-about p {
    color: #adb5bd;
    margin-bottom: 20px;
    line-height: 1.8;
    text-align: justify;
}

.footer-links h3,
.footer-services h3,
.footer-newsletter h3 {
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after,
.footer-services h3::after,
.footer-newsletter h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--secondary);
}

.footer-links ul,
.footer-services ul {
    list-style: none;
    padding: 0;
}

.footer-links li,
.footer-services li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-services a {
    color: #adb5bd;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-links a:hover,
.footer-services a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-contact h3 {
    color: var(--secondary);
    font-size: 1.5rem;
}

.footer-contact ul li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.footer-contact ul li i {
    color: var(--secondary);
    font-size: 1.2rem;
    margin-top: 5px;
}

.footer-contact ul li span {
    color: var(--light);
    line-height: 2;
}

.footer-newsletter p {
    color: #adb5bd;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-input {
    flex: 1;
    padding: 12px 15px;
    font-size: 16px;
    border: none;
    border-radius: 0;
    font-family: 'Poppins', sans-serif;
}

.newsletter-btn {
    padding: 0 20px;
    background: var(--gradient-secondary);
    color: var(--white);
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 80, 3, 0.3);
}

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

.footer-bottom p {
    color: #adb5bd;
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    text-decoration: none;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--gradient-secondary);
    transform: translateY(-5px);
}

/* Portfolio Section */
.portfolio {
    padding: 100px 0;
    background: var(--light-bg);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.portfolio-item {
    background: var(--white);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.portfolio-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-content {
    padding: 20px;
}

.portfolio-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.portfolio-content p {
    font-size: 0.9rem;
    color: var(--text-color);
    margin-bottom: 8px;
    line-height: 1.5;
}

.portfolio-content p:last-child {
    color: var(--secondary-color);
    font-weight: 500;
}

.portfolio-cta {
    text-align: center;
    padding: 40px 20px;
    background: var(--gradient-primary);
    border-radius: 0;
    color: var(--white);
    position: relative;
    overflow: hidden;
    margin-top: 50px;
}

.portfolio-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/api/placeholder/1920/1080') center/cover;
    opacity: 0.1;
    z-index: 0;
}

.portfolio-cta .container {
    position: relative;
    z-index: 1;
}

.portfolio-cta h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.portfolio-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Courses Section Styles */
.courses {
    padding: 100px 0;
    background: var(--light-bg);
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.course-card {
    background: var(--white);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
}

.course-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.course-card:hover .course-image img {
    transform: scale(1.1);
}

.course-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.course-card:hover .course-overlay {
    opacity: 1;
}

.course-content {
    padding: 20px;
}

.course-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.course-content p {
    font-size: 0.9rem;
    color: var(--text-color);
    margin-bottom: 8px;
    line-height: 1.5;
}

.course-features {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.course-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: var(--text-color);
    font-size: 0.9rem;
}

.course-features li i {
    color: var(--secondary-color);
}

/* Page Hero - sobre nós */
.page-hero {
   background: var(--gradient-hero), url('../Imagens/5.jpeg');
    color: var(--white);
    text-align: center;
    padding: 90px 0;
    position: relative;
    background-size: cover;
    background-position: center;
    overflow: hidden;
      height: 50vh;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-hero p {
    font-size: 20px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Page Hero - contactoss */
.page-hero1 {
   background: var(--gradient-hero), url('../Imagens/2.jpeg');
    color: var(--white);
    text-align: center;
    padding: 90px 0;
    position: relative;
    background-size: cover;
    background-position: center;
    overflow: hidden;
      height: 50vh;
}

.page-hero1 h1 {
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-hero1 p {
    font-size: 20px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}


/* About History Section */
.about-history {
    padding: 80px 0;
    background-color: var(--white);
}

.history-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.history-content h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--primary);
}

.history-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--dark);
    text-align: justify;
}

.history-image {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.history-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.history-image:hover img {
    transform: scale(1.05);
}

/* Team Section */
.team {
    padding: 80px 0;
    background-color: var(--light);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.team-card {
    background: var(--white);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.team-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-content {
    padding: 25px;
    text-align: center;
}

.team-content h3 {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 15px;
}

.team-content p {
    color: var(--gray);
    line-height: 1.6;
}

/* Differentials Section */
.differentials {
    padding: 80px 0;
    background-color: var(--white);
}

.differentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.differential-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.differential-card i {
    font-size: 40px;
    color: var(--secondary);
    margin-bottom: 20px;
}

.differential-card h3 {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 15px;
}

.differential-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* Estilos para o Mapa */
.map-section {
    padding: 4rem 0;
    background-color: var(--light-bg);
}

.map-container {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Especializações Section */
.specializations {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.specializations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.specialization-card {
    background: var(--white);
    padding: 30px;
    border-radius: 0;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.specialization-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.specialization-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--dark-text);
}

.specialization-card p {
    color: var(--text-color);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Experiência Section */
.experience {
    padding: 80px 0;
    background-color: var(--white);
}

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

.experience-content h2 {
    margin-bottom: 30px;
}

.experience-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    text-align: justify;
}

/* Compromisso Section */
.commitment {
    padding: 80px 0;
    background-color: var(--light-bg);
}

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

.commitment-content h2 {
    margin-bottom: 30px;
}

.commitment-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    text-align: justify;
}

/* Scroll Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal-left {
    transform: translateX(-50px);
}

.reveal-right {
    transform: translateX(50px);
}

.reveal-up {
    transform: translateY(30px);
}

.reveal-down {
    transform: translateY(-30px);
}

.reveal.active {
    opacity: 1;
    transform: none;
    transition: all 0.8s ease;
}

/* Section Transitions */
section {
    opacity: 1;
    transform: none;
    transition: all 1s ease;
}

/* Animations (Duplicações removidas ou consolidadas) */
.section-header h2,
.section-header p,
.grid-item,
.portfolio-item,
.course-card {
    opacity: 1;
    transform: none;
    transition: all 0.6s ease;
}

/* Media Queries Consolidadas */

/* Media Query for max-width: 1024px */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 48px;
    }

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

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

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

    .clients-grid,
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

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

    .history-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .history-image {
        order: -1;
    }

    .mobile-team-image {
        display: block;
        text-align: center;
        margin-bottom: 40px;
    }

    .about-image,
    .history-image {
        display: none;
    }

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

    .partners-grid {
        flex-direction: column;
    }

    .partner-logo {
        max-width: 100%;
        padding: 20px;
    }
}

/* Media Query for max-width: 768px */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 40px;
        padding: 80px 20px;
        transition: right 0.4s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

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

    .nav-menu a {
        font-size: 18px;
        color: var(--dark);
        width: 100%;
        text-align: center;
        padding: 10px 0;
    }

    .nav-menu a::after {
        display: none;
    }

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

    .hero h1 {
        font-size: 30px;
    }
    
    .hero p{
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .section-header h2 {
        font-size: 36px;
    }

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

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

    .values h2{
        margin-top: 20%;
        font-size: 1.7rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .clients-grid,
    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns:1fr;
        margin-left: 0;
    }
    .footer-grid p{
margin-bottom: 0px;
}

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-btn {
        width: 100%;
        padding: 12px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-image {
        height: 200px;
    }
    
    .portfolio-content h3 {
        font-size: 1.1rem;
    }
    
    .portfolio-cta {
        padding: 30px 20px;
    }

    .portfolio-cta h3 {
        font-size: 28px;
    }

    .portfolio-download {
        margin-top: 30px;
        padding: 20px 0;
    }

    .btn-download {
        font-size: 14px;
        padding: 10px 20px;
    }

    .btn-download-large {
        font-size: 18px;
        padding: 15px 30px;
    }

    .portfolio-download-section {
        padding: 30px 0;
        margin-bottom: 40px;
    }

    .portfolio-filter {
        flex-wrap: wrap;
    }

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

    .page-hero h1 {
        font-size: 36px;
    }

    .page-hero p {
        font-size: 18px;
    }

    .history-content h2 {
        font-size: 30px;
    }

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

    .team h2{
    font-size: 1.7rem;
    }

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

    .differentials h2{
        font-size: 1.7;
            }

    .specializations-grid {
        grid-template-columns: 1fr;
    }
    
    .specializations h2{
        font-size: 1.7rem;
    }
    .experience-content,
    .commitment-content {
        padding: 0 20px;
    }

    .partners {
        padding: 60px 0;
    }

    .partners-grid {
        margin-top: 30px;
    }

    .partner-logo {
        padding: 20px;
    }

    .parceiro1 {
        margin-top: 30px !important;
        font-size: 16px;
    }

    /* Reduzindo apenas as transições mais pesadas no mobile */
    .reveal {
        transition: all 0.3s ease;
    }

    section {
        transition: all 0.3s ease;
    }

    .section-header h2,
    .section-header p,
    .grid-item,
    .portfolio-item,
    .course-card {
        transition: all 0.3s ease;
    }
    .service-content h3{
        font-size: 22px;
        }
        .p{
            font-size: 15px;
            
                }
}

@media (max-width: 480px) {
   
    .h1{
        font-size: 30px;
    }
    .h2{
        font-size: 26.5px;
    }
    .h3{
        font-size: 23.5px;
    }
    
    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 40px;
        padding: 80px 20px;
        transition: right 0.4s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

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

    .nav-menu a {
        font-size: 18px;
        color: var(--dark);
        width: 100%;
        text-align: center;
        padding: 10px 0;
    }

    .nav-menu a::after {
        display: none;
    }

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

    .hero h1 {
        font-size: 30px;
    }
    
    .hero p{
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .section-header h2 {
        font-size: 26.5px;
    }

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

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

    .values h2{
        font-size: 26.5px;
    }
    .about-stats {
        grid-template-columns: 1fr;
    }

    .clients-grid,
    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns:1fr;
        margin-left: 0;
    }
    .footer-grid p{
margin-bottom: 0px;
}

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-btn {
        width: 100%;
        padding: 12px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-image {
        height: 200px;
    }
    
    .portfolio-content h3 {
        font-size: 23.5px;
    }
    
    .portfolio-cta {
        padding: 30px 20px;
    }

    .portfolio-cta h3 {
        font-size: 23.5px;
    }

    .portfolio-download {
        margin-top: 20px;
        padding: 15px 0;
    }

    .btn-download {
        font-size: 13px;
        padding: 8px 15px;
        gap: 8px;
    }

    .btn-download-large {
        font-size: 16px;
        padding: 12px 25px;
        gap: 10px;
    }

    .portfolio-download-section {
        padding: 25px 0;
        margin-bottom: 30px;
    }

    .portfolio-filter {
        flex-wrap: wrap;
    }

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

    .page-hero h1 {
        font-size: 30px;
    }

    .page-hero p {
        font-size: 16px;
    }

    .history-content h2 {
        font-size: 26.5px;
    }

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

    .team h2{
        font-size: 26.5px;
    }
    .differentials-grid {
        grid-template-columns: 1fr;
    }

    .differentials h2{
font-size: 26.5px;
    }

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

    .specializations h2{
        font-size: 26.5px;
    }
    
    .experience-content,
    .commitment-content {
        padding: 0 20px;
    }

    .partners {
        padding: 40px 0;
    }

    .partners-grid {
        margin-top: 20px;
    }

    .partner-logo {
        padding: 15px;
    }

    .parceiro1 {
        margin-top: 25px !important;
        font-size: 14px;
    }

    /* Reduzindo apenas as transições mais pesadas no mobile */
    .reveal {
        transition: all 0.3s ease;
    }

    section {
        transition: all 0.3s ease;
    }

    .section-header h2,
    .section-header p,
    .grid-item,
    .portfolio-item,
    .course-card {
        transition: all 0.3s ease;
    }
    .service-content h3{
        font-size: 22px;
        }
        .p{
            font-size: 15px;
              }
         .contact-grid {
            display: flex;
            flex-direction: column;
            gap: 30px;
                }
            
         .contact {
            padding: 40px 20px;
                }
            
         .contact-form {
            padding: 20px;
            width: 100%;
            max-width: 100%;
                }
            
        .form-group {
             margin-bottom: 20px;
                }
            
                .section-header h2,
                .section-header p {
                    text-align: center;
                }

                .info-icon {
                    width: 0px;
                    height: 0px;  
                margin-left: -20px;
                }
                
                .info-icon i {
                    font-size: 0;
                    color: var(--white);
                }
                
                .section-header .highlight::after {
                    content: none; /* remove a linha da palavra destacada */
                }
            
                .section-header h2 .highlight {
                    position: relative;
                    display: inline-block;
                }
            
                .section-header h2 .highlight::after {
                    content: '';
                    position: absolute;
                    bottom: -8px;
                    left: 50%;
                    transform: translateX(-50%);
                    width: 70%;
                    height: 3px;
                    background: var(--gradient-secondary);
                }
              }
            
/* WhatsApp Flutuante */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 0;
    text-decoration: none;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

.whatsapp-float a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    background: #128c7e;
}

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

/* Responsividade para WhatsApp Float */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float a {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-float a {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}
            
/* Melhorias nos Cards de Informação */
.info-card {
    background: var(--white);
    padding: 30px;
    border-radius: 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary);
    display: flex;
    align-items: center;
    gap: 20px;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.info-icon i {
    font-size: 24px;
    color: var(--white);
}

.info-card:hover .info-icon {
    transform: scale(1.1);
}

.info-content h3 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 18px;
}

.info-content p {
    color: var(--gray);
    line-height: 1.6;
}

.info-content a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-content a:hover {
    color: var(--secondary);
}

/* Botão de Envio com Loading */
.btn-loading {
    display: none;
}

.btn.loading .btn-text {
    display: none;
}

.btn.loading .btn-loading {
    display: inline-block;
}

/* Partners Section */
.partners {
    padding: 100px 0;
    background: var(--white);
    position: relative;
}

.partners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}

.partner-logo {
    max-width: 800px;
    width: 100%;
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.partner-logo img {
    max-width: 100%;
    height: auto;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.partner-logo:hover img {
    filter: grayscale(0%);
}

/* Espaçamento para o texto dos parceiros */
.parceiro1 {
    margin-top: 60px !important;
    font-size: 20px;
    color: var(--gray);
    text-align: center;
    font-weight: 500;
}

.partners-grid {
    flex-direction: column;
}

.partner-logo {
    max-width: 100%;
    padding: 20px;
}

.parceiro1 {
    margin-top: 40px !important;
    font-size: 18px;
}
            