/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

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

.email-button  {
    display: flex; 
    justify-content: center; 
    align-items: center; 
    margin-top: 32px;
}

/* Cores principais */
:root {
    --primary-color: #5fa38a;
    --primary-dark: #4c7e6d;
    --primary-light: #8bc0a8;
    --accent-color: #FFA500;
    --text-dark: #333;
    --text-light: #666;
    --text-muted: #999;
    --background-light: #f8f9fa;
    --border-color: #e5e5e5;
}

.text-primary {
    color: var(--primary-color);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo-img {
    height: 40px;
    width: auto;
}

.about-visual {
    text-align: center;
}

.renansujii-um {
    height: 350px;
    width: auto;
    border-radius: 24px;
}

.renansujii-dois {
    height: 400px;
    width: auto;
    border-radius: 24px;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

/* Botões */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.btn-md {
    padding: 16px 32px;
    font-size: 18px;
    width: 280px;
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

.arrow {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.btn:hover .arrow {
    transform: translateX(4px);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-visual {
    display: flex;
    justify-content: center;
}

.hero-card {
    padding: 40px;
    border-radius: 24px;
    text-align: center;
    max-width: 400px;
}

.icon-wrapper {
    margin-bottom: 20px;
}

.trend-icon {
    font-size: 4rem;
    margin-bottom: 16px;
}

.hero-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.hero-card p {
    color: var(--text-light);
}

/* Sections */
section {
    padding: 80px 0;
}

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

.section-header-info {
    text-align: center;
    margin-bottom: 40px;
}
.section-header-info h2 {
    font-size: 2.0rem;
    font-weight: 700;
    margin-bottom: 0px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}


/* Curso Info Section */

.cards-grid-info {
    display: flex;
    flex-wrap: wrap; /* permite quebrar linha */
    gap: 30px;
    justify-content: center;
}


.card-info {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 180px;
    height: 120px;
    margin-bottom: 20px;
    display: flex;
    gap: 10px;
    justify-content: space-between;
}

.card-info-text {
    text-align: left;
}

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

.card-icon-info {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* Solutions Section */
.solutions {
    background-color: var(--background-light);
}

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

.card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.card p {
    color: var(--text-light);
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.about-description p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.badges {
    display: flex;
    flex-wrap: wrap;
    gap: 24px; /* Espaçamento igual entre badges */
    justify-content: center; /* Centraliza as badges */
    align-items: center;     /* Centraliza verticalmente */
    margin-top: 10px;
}

.badge-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-align: center;
    font-weight: bold;
    display:block; 
    margin-top:10px;
}

.badge-img {
    display: block;
    margin: 0;
    height: auto;
    width: 120px;
}

.badge {
    background-color: var(--background-light);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    text-align: center;
    word-break: break-word;
    width: 150px;
    min-width: 150px;
    max-width: 150px;
    height: auto;
}

.about-card {
    background: linear-gradient(135deg, rgba(107, 163, 104, 0.1) 0%, rgba(255, 165, 0, 0.1) 100%);
    padding: 40px;
    border-radius: 24px;
    text-align: center;
}

.award-icon {
    font-size: 4rem;
    margin-bottom: 16px;
}

.about-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.about-card p {
    color: var(--text-light);
}

/* Course Section */
.course {
    background-color: var(--background-light);
}

.course-modules {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.module {
    background: white;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.module-number {
    width: 50px;
    height: 50px;
    background-color: rgba(107, 163, 104, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.module h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.module p {
    color: var(--text-light);
    font-size: 0.95rem;
}

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

.highlight-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 165, 0, 0.1);
    color: var(--accent-color);
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    margin-bottom: 20px;
}

.course-highlight p {
    font-size: 1.125rem;
    color: var(--text-light);
}

.course-botao {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.testimonialVideos {
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.stars {
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.testimonial h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.testimonial p {
    color: var(--text-light);
    font-style: italic;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
}

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

.cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 40px;
}

/* Footer */
.footer {
    background-color: var(--background-light);
    padding: 40px 0;
}

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

.footer-logo {
    height: 100px;
    width: auto;
    margin-bottom: 16px;
}

.footer p {
    color: var(--text-muted);
    font-size: 0.875rem;
}
.social-strip {
  position: relative;
  padding: 24px 0;
  text-align: center;
  background: var(--primary-dark);
}

.social-icons li {
    display: inline-block;
    font-size: 14px;
    margin-right: 48px;
}

.social-link {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .13em;
    color: white;
    text-decoration: none;
}


.cta-images-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 por linha */
    gap: 20px;
    max-width: 900px;
    margin: 0 auto; /* centraliza */
    justify-items: center;
}

.cta-images-grid a {
    width: 100%;
    display: flex;
    justify-content: center;
}

.cta-images-midia {
    width: 100%;
    max-width: 220px; /* tamanho fixo visual */
    height: 150px;
    object-fit: contain; /* mantém proporção */
}

/* Tablet */
@media (max-width: 768px) {
    .cta-images-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Celular */
@media (max-width: 480px) {
    .cta-images-grid {
        grid-template-columns: 1fr;
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .cta h2 {
        font-size: 2rem;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
    }
    
    .course-modules {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .badges {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
        justify-items: center;
        align-items: center;
    }
    
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .btn-large {
        padding: 14px 24px;
        font-size: 16px;
    }
}

