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


.video-section {
    background-color: #002b5c; /* azul escuro de fundo */
    color: white;
    padding: 150px 20px;
}

.video-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.video-text {
    flex: 1;
}

.video-text h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.video-text p {
    font-size: 18px;
    line-height: 1.5;
}

.video-text .highlight {
    background-color: red;
    color: white;
    padding: 2px 6px;
}

.video-embed {
    flex: 1;
}

.video-embed iframe {
    width: 110%;
    height: 335px;
    border-radius: 10px;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* ===== HEADER BRANCO FIXO ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 10000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 10px 0;
}

/* ===== MENU VERMELHO FIXO ABAIXO DO HEADER ===== */
.top-menu {
    position: fixed;
    top: 80px; /* altura do header */
    left: 0;
    width: 100%;
    background: #c40000;
    color: #fff;
    z-index: 9999;
    padding: 8px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.top-menu .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu-links {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.menu-links li a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s ease;
}

.menu-links li a:hover {
    color: #ffeb3b;
}

/* Espaço para que o conteúdo não fique escondido */
.page-offset {
    height: 130px; /* header + menu */
}

/* Responsivo */
@media (max-width: 768px) {
    .menu-links {
        flex-direction: column;
        gap: 10px;
    }
    .top-menu {
        top: 100px; /* header mais alto no mobile */
    }
    .page-offset {
        height: 160px;
    }
}
/* Ajustes gerais do menu vermelho */
.top-menu .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px; /* espaço entre o título e os links */
}

/* Estilo do título */
.menu-title {
    font-weight: 700;
    font-size: 16px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-right: 2px solid rgba(255, 255, 255, 0.4);
    padding-right: 20px;
}

/* Ajuste nos links */
.menu-links {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.menu-links li a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s ease;
}

.menu-links li a:hover {
    color: #ffeb3b;
}

/* Submenu base (oculto por padrão) */
.submenu {
    display: none;
    position: absolute;
    background: #a00000;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    top: 100%;
    left: 0;
    min-width: 180px;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    z-index: 9999;
}

/* Itens do submenu */
.submenu li {
    padding: 5px 20px;
}

.submenu li a {
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    display: block;
    transition: background 0.3s ease;
}

.submenu li a:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Mostrar submenu ao passar o mouse */
.has-submenu {
    position: relative;
}

.has-submenu:hover .submenu {
    display: block;
}

/* Ajuste para o layout geral */
.top-menu .menu-links {
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.menu-links li {
    position: relative;
}



.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
/* video instagram */
.testimonials-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.testimonial-video {
    flex: 1 1 300px;
    max-width: 400px;
    display: flex;
    justify-content: center;
}


/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(220, 38, 38, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

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

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

.contact-info {
    display: flex;
    gap: 20px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #DC2626;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 25px;
}

.contact-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.2);
}

.contact-link.whatsapp {
    background: #25D366;
    color: white;
}

.contact-link.whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px) scale(1.05);
}

/* Hero Section */
.hero {
    background: transparent; color: #002b5c;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-background,
.hero-shapes {
    display: none !important; /* esconde o fundo vermelho e shapes */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    left: 80%;
    animation-delay: 2s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    top: 30%;
    left: 70%;
    animation-delay: 4s;
}

.shape-4 {
    width: 80px;
    height: 80px;
    top: 80%;
    left: 20%;
    animation-delay: 1s;
}

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

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.title-line-1 {
    display: block;
    color: #FEF3C7;
    font-size: 3rem;
    font-weight: 700;
}

.title-line-2 {
    display: block;
    font-size: 5rem;
    color: white;
    text-shadow: 3px 3px 0px rgba(0,0,0,0.2);
}

.title-line-3 {
    display: block;
    font-size: 2.5rem;
    color: #FEF3C7;
    font-weight: 600;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.95;
    line-height: 1.6;
    font-weight: 500;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
        background: white;
    color: #DC2626;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    color: #B91C1C;
}

.btn-secondary {
    background: white;
    color: #DC2626;
    border: 2px solid rgba(255,255,255,0.4);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-3px);
    border-color: rgba(255,255,255,0.6);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.pulse {
    animation: pulse 2s infinite;
}

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

.urgency-banner {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255,255,255,0.15);
    padding: 20px 25px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 0 20px rgba(255,255,255,0.2); }
    to { box-shadow: 0 0 30px rgba(255,255,255,0.4); }
}

.urgency-icon {
    font-size: 1.5rem;
    color: #DC2626;
}

.urgency-text strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.urgency-text span {
    font-size: 0.9rem;
    opacity: 0.9;
}

.hero-image {
    position: relative;
}

.image-container {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    transform: rotate(3deg);
    transition: all 0.3s ease;
}

.image-container:hover {
    transform: rotate(0deg) scale(1.05);
}

.hero-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 25px;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.floating-element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #DC2626;
    font-size: 1.5rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    animation: bounce 3s ease-in-out infinite;
}

.element-1 {
    top: 20%;
    right: -10%;
    animation-delay: 0s;
}

.element-2 {
    bottom: 30%;
    left: -10%;
    animation-delay: 1s;
}

.element-3 {
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

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

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.title-accent {
    color: #DC2626;
    display: block;
}

.title-main {
    color: #1F2937;
    display: block;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #6B7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Benefits Section */
.benefits {
    padding: 100px 0;
    background: #FAFAFA;
    position: relative;
}

.benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, #DC2626, transparent);
    opacity: 0.05;
}

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

.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #DC2626, #EF4444);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.2);
    border-color: #DC2626;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #DC2626, #EF4444);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
    position: relative;
}

.benefit-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    opacity: 0.3;
    transform: scale(1.3);
    animation: ripple 2s infinite;
}

@keyframes ripple {
    0% { transform: scale(1.3); opacity: 0.3; }
    100% { transform: scale(1.8); opacity: 0; }
}

.benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 15px;
}

.benefit-card p {
    color: #6B7280;
    line-height: 1.6;
}

.card-decoration {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #DC2626, #EF4444);
    border-radius: 50%;
    opacity: 0.1;
}

/* Education Levels */
.education-levels {
    padding: 100px 0;
    background: white;
}

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

.level-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.level-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(220, 38, 38, 0.15);
    border-color: #DC2626;
}

.level-number {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: #DC2626;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    z-index: 3;
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.3);
}

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

.level-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

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

.level-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: rgba(220, 38, 38, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    backdrop-filter: blur(10px);
}

.level-content {
    padding: 30px;
}

.level-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 15px;
}

.level-content p {
    color: #6B7280;
    line-height: 1.6;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, #FAFAFA 0%, #F3F4F6 100%);
}

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

.testimonial-card {
    background: white;
    padding: 40px 30px;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    border-left: 5px solid #DC2626;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(220, 38, 38, 0.15);
}

.testimonial-quote {
    position: absolute;
    top: -15px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: #DC2626;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.testimonial-content {
    margin: 20px 0 30px;
}

.testimonial-content p {
    font-style: italic;
    color: #4B5563;
    line-height: 1.7;
    font-size: 1.1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #DC2626, #EF4444);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.author-info strong {
    color: #1F2937;
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.author-info span {
    color: #6B7280;
    font-size: 0.9rem;
}

.rating {
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border: 2px solid #DC2626;
}

.stars {
    color: #F59E0B;
    font-size: 2rem;
    margin-bottom: 15px;
}

.rating span {
    color: #4B5563;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Form Section */
.form-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #DC2626 0%, #EF4444 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.form-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.form-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.form-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.form-shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
}

.form-shape-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -100px;
}

.form-shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 10%;
}

.form-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.form-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.form-text h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.form-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
    line-height: 1.6;
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.form-benefit i {
    color: #10B981;
    font-size: 1.3rem;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    position: relative;
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h3 {
    color: #1F2937;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #E5E7EB;
    border-radius: 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    background: #FAFAFA;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #DC2626;
    background: white;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
    transform: translateY(-2px);
}

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

/* Footer */
.footer {
    background: #1F2937;
    color: white;
    padding: 80px 0 30px;
}

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

.footer-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #F9FAFB;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: #D1D5DB;
    transition: all 0.3s ease;
}

.contact-item:hover {
    color: #DC2626;
    transform: translateX(5px);
}

.contact-item i {
    color: #DC2626;
    width: 20px;
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #374151;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-link:hover {
    background: #DC2626;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(220, 38, 38, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #374151;
    color: #9CA3AF;
}

/* Para tablets e celulares (até 768px) */
/* Oculta a imagem original no mobile e mostra a nova */
@media (max-width: 768px) {
    .hero-banner {
        content: url('assets/images/IMG_5806.PNG'); /* substitui a imagem */
        width: 100%; /* ajusta tamanho */
        height: auto;
    }
    /* Mantém os botões visíveis */
    .hero-buttons {
        display: flex;           /* garante que o layout flex funcione */
        margin-top: 400px; /* ajusta a distância da imagem */
        gap: 20px;               /* espaço entre os botões */
        justify-content: center;
        align-items: center;
    }
    .hero-subtitle {
        display: none; /* esconde o texto */
    }
    .urgency-banner {
        display: none; /* esconde o texto */
    }

    .video-content {
        flex-direction: column; /* empilha os elementos */
        text-align: center; /* centraliza o texto */
    }

    .video-embed iframe {
        width: 100%; /* vídeo ocupa toda a largura */
        height: auto; /* altura proporcional */
    }
    .form-section .form-text {
        display: none;
    }

    /* Ajusta o formulário para ocupar toda a largura */
    .form-section .contact-form {
        width: 130%;
        margin: 0 auto;
    }
}
}

/* Para celulares pequenos (até 480px) */
/* Oculta a imagem original no mobile e mostra a nova */
@media (max-width: 480px) {
    .hero-banner {
        content: url('assets/images/IMG_5806.PNG'); /* substitui a imagem */
        width: 100%; /* ajusta tamanho */
        height: auto;
    }
    /* Mantém os botões visíveis */
    .hero-buttons {
        display: flex;           /* garante que o layout flex funcione */
        margin-top: 300px; /* ajusta a distância da imagem */
        gap: 20px;               /* espaço entre os botões */
        justify-content: center;
        align-items: center;
    }
    .hero-text {
        display: none; /* esconde o texto */
    }
    .video-embed iframe {
        width: 100%; /* vídeo ocupa toda a largura */
        height: auto; /* altura proporcional */
    }
    .form-section .form-text {
        display: none;
    }

    /* Ajusta o formulário para ocupar toda a largura */
    .form-section .contact-form {
        width: 130%;
        margin: 0 auto;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
.loading {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

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


/* Banner como IMG ocupando toda a área do hero sem cortes */
.hero {
    position: relative;
}
.hero-banner {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 105%;
    object-fit: contain; /* exibe a imagem inteira */
    z-index: 0;
    pointer-events: none; /* evita bloquear cliques nos botões do hero */
}

/* Garante que o conteúdo fique por cima da imagem */
.hero-content {
    position: relative;
    z-index: 2;
}
