/*
Theme Name: Terrazul
Description: Tema personalizado para Instituto Terrazul - Plataforma de cursos de Gestão Ambiental
Author: Seu Nome
Version: 1.7.0
*/

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

html {
    background-color: #ffffff;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    scroll-behavior: smooth;
    background-color: #ffffff;
    background-image: none;
}

/* Garantir que o fundo seja sempre branco */
body, html {
    background-color: #ffffff !important;
    background-image: none !important;
}

/* Estilos para o main e site-main */
main, .site-main {
    background-color: #ffffff;
    background-image: none;
}

/* Estilos para o container */
.container {
    background-color: #ffffff;
    background-image: none;
}

/* Animação de carregamento suave */
.site-header,
.hero-section,
.course-card,
.courses-section,
.testimonials-section {
    animation: fadeInUp 0.6s ease-out;
}

.course-item {
    animation: fadeInUp 0.6s ease-out;
    animation-delay: 0.1s;
    animation-fill-mode: both;
}

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

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

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



.testimonial-item {
    animation: fadeInUp 0.6s ease-out;
    animation-delay: 0.1s;
    animation-fill-mode: both;
}

.testimonial-item:nth-child(2) {
    animation-delay: 0.3s;
}

.testimonial-item:nth-child(3) {
    animation-delay: 0.5s;
}

/* Animação pulse para ícones dos cursos */
.course-icon.pulse {
    animation: pulseIcon 0.6s ease-in-out;
}

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



/* Animações para depoimentos */
.quote-icon.quote-pulse {
    animation: quotePulse 0.8s ease-in-out;
}

@keyframes quotePulse {
    0% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(5deg); }
    100% { transform: scale(1) rotate(0deg); }
}

.stars-glow {
    animation: starsGlow 1s ease-in-out infinite alternate;
}

@keyframes starsGlow {
    0% { 
        text-shadow: 0 0 5px rgba(251, 191, 36, 0.5);
    }
    100% { 
        text-shadow: 0 0 15px rgba(251, 191, 36, 0.8);
    }
}

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

/* Melhorias na acessibilidade */
*:focus {
    outline: 2px solid #009ad6;
    outline-offset: 2px;
}

/* Header */
.site-header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 70px;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    color: #009ad6;
    text-decoration: none;
    font-size: 1.1rem;
    white-space: nowrap;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: #009ad6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.logo-icon svg {
    color: #009ad6;
}

.logo-image {
    max-height: 60px;
    width: auto;
    object-fit: contain;
}

.main-nav {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

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

.main-nav a {
    text-decoration: none;
    color: #374151;
    font-weight: 700;
    font-size: 1.15rem;
    padding: 0.75rem 0;
    transition: color 0.3s;
    white-space: nowrap;
}

.main-nav a:hover {
    color: #009ad6;
}

.search-container {
    position: relative;
    flex: 1;
    max-width: 450px;
    margin: 0 3rem;
}

.search-input {
    width: 100%;
    padding: 0.85rem 3.5rem 0.85rem 1.2rem;
    border: 2px solid #e5e7eb;
    border-radius: 50px;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
    background: #f9fafb;
}

.search-input:focus {
    border-color: #009ad6;
    background: white;
    box-shadow: 0 0 0 3px rgba(0, 154, 214, 0.1);
}

.search-input::placeholder {
    color: #9ca3af;
}

.search-btn {
    position: absolute;
    right: 0.25rem;
    top: 50%;
    transform: translateY(-50%);
    background: #009ad6;
    border: none;
    color: white;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: background 0.3s;
}

.search-btn:hover {
    background: #007bb5;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-shrink: 0;
}

.header-link {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
    white-space: nowrap;
}

.header-link:hover {
    color: #009ad6;
}

.btn-login {
    padding: 0.65rem 1.5rem;
    border: 2px solid #009ad6;
    color: #009ad6;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    white-space: nowrap;
    display: inline-block;
}

.btn-login:hover {
    background: #009ad6;
    color: white;
    transform: translateY(-1px);
}

.btn-register {
    padding: 0.65rem 1.5rem;
    background: #009ad6;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    white-space: nowrap;
    display: inline-block;
    border: 2px solid #009ad6;
}

.btn-register:hover {
    background: #007bb5;
    border-color: #007bb5;
    transform: translateY(-1px);
}

/* Hero Section - Baseado no exemplo.html */
.hero-section {
    background-color: #f9fbfc;
    padding: 50px;
    color: #111;
}

.hero-container {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-left {
    flex: 1;
    min-width: 300px;
}

.hero-left h1 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #111;
    line-height: 1.2;
}

.hero-left h1 .highlight {
    color: #009DDC;
}

.hero-left p {
    font-size: 16px;
    margin-bottom: 30px;
    color: #444;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.hero-buttons button,
.hero-buttons a {
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid #009DDC;
    transition: all 0.3s;
    text-decoration: none;
}

.hero-buttons .btn-primary {
    background-color: #009DDC;
    color: white;
    border: none;
}

.hero-buttons .btn-secondary {
    background-color: white;
    color: #009DDC;
}

.hero-buttons button:hover,
.hero-buttons a:hover {
    opacity: 0.85;
}

.hero-stats {
    display: flex;
    gap: 30px;
    font-size: 14px;
}

.hero-stats .stat-item {
    font-weight: bold;
}

.hero-stats .stat-number {
    font-weight: bold;
    font-size: 16px;
    color: #111;
    display: block;
    margin-bottom: 5px;
}

.hero-stats .stat-label {
    display: block;
    font-weight: normal;
    font-size: 14px;
    color: #555;
}

.hero-right {
    flex: 1;
    min-width: 300px;
    background-color: #e6f1fb;
    padding: 20px;
    border-radius: 16px;
}

.video-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* Proporção 16:9 */
    border-radius: 8px;
    overflow: hidden;
    background-color: #cfe5fa;
}

.video-container iframe,
.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
    background: #cfe5fa;
    object-fit: cover;
}

.course-details {
    margin-top: 20px;
}

.course-details h3 {
    margin-bottom: 10px;
    font-size: 18px;
    color: #111;
}

.course-details p {
    font-size: 14px;
    color: #333;
    margin-bottom: 10px;
}

.course-rating {
    margin: 10px 0;
    color: #f2b01e;
    font-size: 14px;
}

.course-rating .rating-text {
    color: #666;
}

.start-button {
    margin-top: 20px;
    display: block;
    background-color: #0079c1;
    color: white;
    border: none;
    padding: 12px;
    text-align: center;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s;
}

.start-button:hover {
    background-color: #005f99;
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
    border-radius: 12px;
}

.play-button {
    width: 56px;
    height: 56px;
    background: rgba(255,255,255,0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.play-button:hover {
    transform: scale(1.15);
    background: white;
    box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}

.play-button::before {
    content: "▶";
    color: #009ad6;
    font-size: 1.3rem;
    margin-left: 2px;
}

/* Video Styles */

/* Courses Section */
.courses-section {
    background: #f8fafc;
    padding: 5rem 2rem;
}

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

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: -1rem;
    line-height: 1.2;
    padding-top: 75px;
}


.section-header p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    padding-top: 19px;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.course-item {
    background: white;
    border-radius: 16px;
    padding: 1.25rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    position: relative;
    border: 1px solid rgba(226, 232, 240, 0.5);
}

.course-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.course-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #009ad6;
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 10;
}

.course-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #e0f2fe 0%, #b3e5fc 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem auto 1.25rem auto;
    color: #009ad6;
}

.course-item h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.75rem;
    line-height: 1.3;
    min-height: 2.6rem;
}

.course-desc {
    color: #64748b;
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 1rem;
    min-height: 2rem;
}

.course-instructor {
    color: #374151;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.course-meta {
    margin-bottom: 1.5rem;
}

.course-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.course-rating .stars {
    color: #fbbf24;
    font-size: 0.9rem;
}

.course-rating .rating-number {
    font-weight: 600;
    color: #1e293b;
    font-size: 0.9rem;
}

.course-rating .reviews-count {
    color: #64748b;
    font-size: 0.85rem;
}

.course-duration {
    color: #64748b;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.course-category {
    display: inline-block;
    background: #e0f2fe;
    color: #009ad6;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.course-price {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.course-price .current-price {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1e293b;
}

.course-price .original-price {
    font-size: 0.9rem;
    color: #94a3b8;
    text-decoration: line-through;
}

.section-footer {
    text-align: center;
    margin-top: 3rem;
}

.btn-explore {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: transparent;
    color: #009ad6;
    text-decoration: none;
    border: 2px solid #009ad6;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
}

.btn-explore:hover {
    background: #009ad6;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 154, 214, 0.3);
}



/* Testimonials Section */
.testimonials-section {
    background: #f1f5f9;
    padding: 5rem 2rem;
}

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

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.testimonial-item {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border: 1px solid rgba(226, 232, 240, 0.5);
    position: relative;
}

.testimonial-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.quote-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #009ad6 0%, #00bcd4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #374151;
    font-style: italic;
    margin-bottom: 2rem;
    min-height: 4.5rem;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 4rem;
    color: #e2e8f0;
    position: absolute;
    top: -1rem;
    left: -0.5rem;
    font-family: serif;
    line-height: 1;
}

.testimonial-text::after {
    content: '"';
    font-size: 4rem;
    color: #e2e8f0;
    position: absolute;
    bottom: -2rem;
    right: 0;
    font-family: serif;
    line-height: 1;
}

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

.author-photo {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #009ad6;
    flex-shrink: 0;
}

.author-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.author-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.author-title {
    font-size: 0.9rem;
    color: #009ad6;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.author-rating {
    display: flex;
    align-items: center;
}

.author-rating .stars {
    color: #fbbf24;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Content Area */
.content-area {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #ffffff;
    background-image: none;
}

.content-area article {
    margin-bottom: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    background-color: #ffffff;
    background-image: none;
}

.entry-title a {
    color: #1e293b;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
}

.entry-title a:hover {
    color: #009ad6;
}

.entry-header {
    background-color: #ffffff;
    background-image: none;
}

.no-content {
    background-color: #ffffff;
    background-image: none;
}

.post {
    background-color: #ffffff;
    background-image: none;
}

.page {
    background-color: #ffffff;
    background-image: none;
}

.entry-content {
    color: #64748b;
    line-height: 1.6;
    margin-top: 1rem;
    background-color: #ffffff;
    background-image: none;
}

.read-more {
    color: #009ad6;
    text-decoration: none;
    font-weight: 500;
    margin-top: 1rem;
    display: inline-block;
}

.read-more:hover {
    text-decoration: underline;
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, #009ad6 0%, #0082b8 100%);
    color: white;
    margin-top: 4rem;
}

.footer-content {
    padding: 4rem 2rem 3rem;
}

.footer-main {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo svg {
    color: white;
    flex-shrink: 0;
}

.footer-logo-text {
    color: white;
    font-size: 1.2rem;
    line-height: 1.2;
    font-weight: 400;
}

.footer-logo-text strong {
    font-weight: 700;
}

.footer-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.footer-column h4 {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: block;
    padding: 0.25rem 0;
}

.footer-column ul li a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.15);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 2rem;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

.footer-language {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.language-icon {
    font-size: 1rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: white;
}

/* Responsive */
@media (max-width: 1200px) {
    .courses-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
    

    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 1024px) {
    .header-container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
        padding: 1rem 1.5rem;
    }
    
    .logo {
        order: 1;
        flex-basis: 100%;
        justify-content: center;
        margin-bottom: 0.5rem;
    }
    
    .main-nav {
        order: 2;
        gap: 2rem;
        flex-basis: 100%;
        justify-content: center;
    }
    
    .search-container {
        order: 3;
        flex-basis: 100%;
        max-width: 450px;
        margin: 0.5rem 0;
    }
    
    .header-actions {
        order: 4;
        flex-basis: 100%;
        justify-content: center;
        gap: 1.5rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-content {
        order: 2;
    }
    
    .course-card {
        order: 1;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .hero-content p {
        max-width: 100%;
    }
    
    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    

    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 900px) {
    .mobile-menu-toggle {
        display: block !important;
    }
    .main-nav {
        display: none;
        flex-direction: column;
        gap: 1.5rem;
        background: #fff;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        box-shadow: 0 4px 16px rgba(0,0,0,0.08);
        z-index: 2000;
        padding: 1.5rem 0;
    }
    .main-nav.mobile-open {
        display: flex;
    }
    .header-container {
        position: relative;
    }
}

@media (min-width: 901px) {
    .mobile-menu-toggle {
        display: none !important;
    }
    .main-nav {
        display: flex !important;
        position: static;
        flex-direction: row;
        background: none;
        box-shadow: none;
        padding: 0;
    }
}

@media (max-width: 768px) {
    .header-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding: 1rem 1.5rem;
        min-height: auto;
    }
    
    .logo {
        order: 1;
        margin-bottom: 0.5rem;
    }
    
    .main-nav {
        order: 2;
        width: 100%;
        justify-content: center;
        gap: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .search-container {
        order: 3;
        margin: 0;
        max-width: none;
        width: 100%;
    }
    
    .header-actions {
        order: 4;
        gap: 1rem;
        justify-content: center;
    }
    
    .hero-section {
        padding: 30px 20px;
    }
    
    .hero-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .hero-left h1 {
        font-size: 28px;
    }
    
    .hero-left p {
        font-size: 15px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-buttons button,
    .hero-buttons a {
        width: 100%;
        text-align: center;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 20px;
    }
    
    .hero-right {
        max-width: none;
    }
    

    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    
    .footer-links {
        gap: 2rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .courses-section {
        padding: 3rem 1.5rem;
    }
    
    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .professors-section {
        padding: 3rem 1.5rem;
    }
    

    
    .testimonials-section {
        padding: 3rem 1.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-top: 3rem;
    }
    
    .testimonial-item {
        padding: 1.5rem;
    }
    
    .quote-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 1.25rem;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
        min-height: 4rem;
        margin-bottom: 1.5rem;
    }
    
    .author-photo {
        width: 56px;
        height: 56px;
        border-width: 2px;
    }
    
    .author-info h4 {
        font-size: 1rem;
    }
    
    .author-title {
        font-size: 0.85rem;
    }
}

@media (max-width: 600px) {
    .hero-left > div {
        flex-direction: column !important;
        gap: 1rem !important;
    }
    .hero-left > div > div {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 0.5rem !important;
        text-align: center !important;
    }
    .hero-left > div a {
        width: 100% !important;
        margin-bottom: 0.25rem;
    }
    .hero-left > div span {
        display: block !important;
        width: 100%;
        text-align: center !important;
        font-size: 0.98rem !important;
    }
    .course-image {
        height: 120px !important;
        min-height: 120px !important;
        max-height: 140px !important;
    }
    .course-image img {
        height: 120px !important;
        min-height: 120px !important;
        max-height: 140px !important;
        object-fit: contain !important;
        object-position: center !important;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 1rem;
    }
    
    .logo {
        font-size: 1rem;
    }
    
    .logo-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .main-nav {
        gap: 1rem;
    }
    
    .main-nav a {
        font-size: 0.9rem;
    }
    
    .btn-login,
    .btn-register {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .hero-section {
        padding: 20px 15px;
    }
    
    .hero-container {
        gap: 25px;
    }
    
    .hero-left h1 {
        font-size: 24px;
    }
    
    .hero-left p {
        font-size: 14px;
    }
    
    .hero-stats {
        gap: 15px;
    }
    
    .hero-stats .stat-number {
        font-size: 14px;
    }
    
    .hero-stats .stat-label {
        font-size: 12px;
    }
    
    .courses-section {
        padding: 2.5rem 1rem;
    }
    
    .courses-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .section-header p {
        font-size: 0.95rem;
    }
    
    .course-item {
        padding: 1.25rem;
    }
    
    .course-icon {
        width: 70px;
        height: 70px;
        margin: 1.5rem auto 1rem auto;
    }
    
    .course-item h3 {
        font-size: 1rem;
        min-height: auto;
    }
    
    .course-desc {
        font-size: 0.85rem;
        min-height: auto;
    }
    
    .btn-explore {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
    

    

    
    .testimonials-section {
        padding: 2.5rem 1rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-top: 2.5rem;
    }
    
    .testimonial-item {
        padding: 1.5rem 1.25rem;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .quote-icon {
        width: 36px;
        height: 36px;
        margin-bottom: 1rem;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
        min-height: auto;
        margin-bottom: 1.25rem;
    }
    
    .testimonial-text::before,
    .testimonial-text::after {
        font-size: 3rem;
    }
    
    .author-photo {
        width: 48px;
        height: 48px;
    }
    
    .author-info h4 {
        font-size: 0.95rem;
    }
    
    .author-title {
        font-size: 0.8rem;
    }
    
    .author-rating .stars {
        font-size: 0.8rem;
    }
    
    .footer-content {
        padding: 3rem 1rem 2rem;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-brand {
        max-width: none;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        padding: 1rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .footer-legal {
        gap: 1rem;
        justify-content: center;
    }
} 

/* Estilos para Página de Empresas */
.empresas-hero {
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.empresas-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%231e40af" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.empresas-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

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

.empresas-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.empresas-hero-title .highlight {
    color: #1e40af;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.empresas-hero-description {
    font-size: 1.25rem;
    color: #374151;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.empresas-hero-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.empresas-hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-empresas-primary {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
}

.btn-empresas-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 64, 175, 0.4);
    color: white;
}

.btn-empresas-secondary {
    background: white;
    color: #1e40af;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid #1e40af;
    transition: all 0.3s ease;
}

.btn-empresas-secondary:hover {
    background: #1e40af;
    color: white;
    transform: translateY(-2px);
}

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

.empresas-hero-image {
    max-width: 400px;
    animation: float 6s ease-in-out infinite;
}

.empresas-logo {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 20px rgba(30, 64, 175, 0.2));
    transition: all 0.3s ease;
}

.empresas-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 8px 30px rgba(30, 64, 175, 0.3));
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Benefícios */
.empresas-beneficios {
    padding: 6rem 0;
    background: white;
}

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

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

.beneficio-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.beneficio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: #1e40af;
}

.beneficio-icon {
    margin-bottom: 1.5rem;
}

.beneficio-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.beneficio-item p {
    color: #64748b;
    line-height: 1.6;
    font-size: 1rem;
}

/* Planos */
.empresas-planos {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
}

.empresas-planos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.plano-item {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.plano-item.destaque {
    border-color: #1e40af;
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(30, 64, 175, 0.2);
}

.plano-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

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

.plano-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.plano-preco {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.preco-valor {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e40af;
}

.preco-periodo {
    font-size: 1rem;
    color: #64748b;
}

.plano-beneficios ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plano-beneficios li {
    padding: 0.75rem 0;
    color: #374151;
    position: relative;
    padding-left: 1.5rem;
}

.plano-beneficios li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #1e40af;
    font-weight: bold;
}

.plano-acoes {
    margin-top: 2rem;
    text-align: center;
}

.btn-plano {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid #1e40af;
    color: #1e40af;
    background: white;
}

.btn-plano:hover {
    background: #1e40af;
    color: white;
    transform: translateY(-2px);
}

.btn-plano.destaque {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
}

.btn-plano.destaque:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 64, 175, 0.4);
}

/* Casos de Sucesso */
.empresas-casos {
    padding: 6rem 0;
    background: white;
}

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

.caso-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.caso-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: #1e40af;
}

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

.caso-logo-placeholder {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.caso-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.caso-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.caso-metricas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.caso-metricas span {
    background: #f1f5f9;
    color: #374151;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* CTA Final */
.empresas-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
}

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

.empresas-cta-logo {
    margin-bottom: 2rem;
}

.cta-logo {
    max-width: 180px;
    height: auto;
    filter: drop-shadow(0 4px 15px rgba(255, 255, 255, 0.2));
    transition: all 0.3s ease;
}

.cta-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 20px rgba(255, 255, 255, 0.3));
}

.empresas-cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.empresas-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    opacity: 0.9;
}

.empresas-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background: white;
    color: #1e40af;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
    color: #1e40af;
}

.btn-cta-secondary {
    background: transparent;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid white;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-cta-secondary:hover {
    background: white;
    color: #1e40af;
    transform: translateY(-2px);
}

/* Responsividade */
@media (max-width: 768px) {
    .empresas-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .empresas-hero-title {
        font-size: 2.5rem;
    }
    
    .empresas-hero-buttons {
        justify-content: center;
    }
    
    .empresas-beneficios-grid {
        grid-template-columns: 1fr;
    }
    
    .empresas-planos-grid {
        grid-template-columns: 1fr;
    }
    
    .plano-item.destaque {
        transform: none;
    }
    
    .empresas-casos-grid {
        grid-template-columns: 1fr;
    }
    
    .empresas-cta-content h2 {
        font-size: 2rem;
    }
    
    .empresas-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .empresas-logo {
        max-width: 280px;
    }
    
    .trust-logo {
        max-width: 150px;
    }
    
    .cta-logo {
        max-width: 140px;
    }
}

@media (max-width: 480px) {
    .empresas-hero {
        padding: 4rem 0;
    }
    
    .empresas-hero-title {
        font-size: 2rem;
    }
    
    .empresas-hero-description {
        font-size: 1.1rem;
    }
    
    .empresas-hero-subtitle {
        font-size: 1rem;
    }
    
    .btn-empresas-primary,
    .btn-empresas-secondary {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .empresas-container {
        padding: 0 1rem;
    }
    
    .beneficio-item,
    .plano-item,
    .caso-item {
        padding: 1.5rem;
    }
} 

/* Seção de Contato */
.empresas-contato {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.empresas-contato-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contato-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contato-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.contato-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.contato-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.contato-icon svg {
    width: 24px;
    height: 24px;
}

.contato-details h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 0.5rem 0;
}

.contato-details p {
    font-size: 1.1rem;
    color: #3b82f6;
    font-weight: 500;
    margin: 0 0 0.25rem 0;
}

.contato-details small {
    color: #64748b;
    font-size: 0.875rem;
}

.contato-form {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.contato-form h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 1rem 0;
}

.contato-form p {
    color: #64748b;
    margin: 0 0 2rem 0;
    line-height: 1.6;
}

/* Responsividade para contato */
@media (max-width: 768px) {
    .empresas-contato-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contato-item {
        padding: 1.5rem;
    }
    
    .contato-form {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .contato-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .contato-icon {
        align-self: center;
    }
}

/* Estilos para a nova seção de contato igual à imagem */
.contato-info-section {
    margin-bottom: 4rem;
}

.contato-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.contato-form-section {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 2rem;
}

.contato-form-section .section-header {
    margin-bottom: 2rem;
}

.contato-form-section .section-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.contato-form-section .section-header p {
    font-size: 1rem;
    color: #6b7280;
}

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

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 1rem;
    color: #111827;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1e40af;
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
}

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

.form-error {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    color: #fbbf24;
}

.form-error .error-text {
    font-size: 0.875rem;
    color: #dc2626;
}

.form-error svg {
    width: 16px;
    height: 16px;
    color: #fbbf24;
}

.form-submit {
    margin-top: 1rem;
}

.btn-enviar {
    background: #1e40af;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-enviar:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
}

/* Responsividade para a nova seção de contato */
@media (max-width: 768px) {
    .contato-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contato-item {
        padding: 1.5rem;
    }
    
    .contato-form-section {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .empresas-contato {
        padding: 2rem 0;
    }
    
    .contato-info-section {
        margin-bottom: 2rem;
    }
    
    .contato-item {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
    
    .contato-icon {
        margin-bottom: 1rem;
    }
    
    .contato-form-section {
        padding: 1rem;
    }
    
    .btn-enviar {
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
    }
} 

 