/* styles.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f3f4f6;
    color: #333;
    line-height: 1.6;
}

/* Container principal */
.main-container {    
    margin: 0 auto;
    background: white;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Cores personalizadas */
.text-yellow {
    color: #FFA500;
}

.text-red {
    color: #ED1C24;
}

.text-green {
    color: #22C55E;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    background: white;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    z-index: 50;
}

.hamburger {
    display: none;
    font-size: 2rem;
    background: none;
    border: none;
    color: #000;
    cursor: pointer;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
}

.logo {
    position: static;
    top: -16px;
    max-width: 250px;
}

.logo img{
    max-width: 250px;
}

.nav-menu {
    display: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-link:hover {
    color: black;
}

.btn-header {
    background: #FFA500;
    color: black;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-header:hover {
    background: #FFA500;
}

.btn-header a{
    text-decoration: none;
    color: #000;
}


/* Hero Section */
    .hero-bg-svg {
        position: absolute;
        top: 0;
        left: 0;
        width: 70%;
        height: 100%;
        z-index: 0; /* 👈 mais alto que a benefits-section */
        pointer-events: none;
    }

    .hero-images-celular{
        display: none;
    }

    .hero-section {
        position: relative;
        z-index: 1;
        overflow: visible;
        color: white;
        padding: 1rem 5rem 1rem;
        /* background: linear-gradient(...) opcional */
    }


    .hero-content {
        position: relative;
        z-index: 2;
    }

  
    
    .hero-content {
        /* max-width: 1200px; */
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 3rem;
        align-items: center;
        min-height: 70vh;
    }

    .hero-title {
        font-size: 2.5rem;
        font-weight: bold;
        line-height: 1.2;
        margin-bottom: 2rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
        color: #d1d5db;
        margin-bottom: 2rem;
        line-height: 1.6;
    }

    .btn-hero{
        /* background: white; */
        color: #ED1C24;
        border: none;
        padding: 1rem 2rem;
        font-size: 1.125rem;
        font-weight: 600;
        border-radius: 0.375rem;
        cursor: pointer;
        transition: background 0.3s;
    }

    .btn-hero:hover {
        background: #ED1C24;
        color: white;
    }

    .images-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .hero-img {
        border-radius: 0.5rem;
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s;
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

    .img-1 {
        transform: rotate(3deg);
    }

    .img-2 {
        transform: rotate(-3deg);
        margin-top: 2rem;
    }

    .hero-img:hover {
        transform: rotate(0deg);
    }


/* Benefits Section */
.benefits-section {
    position: relative;
    z-index: 0; /* 👈 mais baixo que o SVG */
    margin-top: -120px;
    padding-top: 100px;
    padding-bottom: 50px;
    background: #f9fafb;
}

.btn-benefit{
    background: #ED1C24;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-benefit:hover {
    background: #fc1d24;
    color: white;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header span{
    color: #FFA500;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: black;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1rem;
    color: #FFA500;
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.benefit-icon {
    background: #22C55E;
    color: white;
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.benefit-text h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: black;
    margin-bottom: 0.5rem;
}

.benefit-text p {
    color: #6b7280;
}

.highlight-box {
    /* background: #DAA520; */
    /* padding: 1.5rem; */
    border-radius: 0.5rem;
    margin-top: 1rem;
}

.highlight-box h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: black;
    margin-bottom: 0.5rem;
}

.highlight-box p {
    color: #1f2937;
}

.benefits-image {
    max-width: 400px;
    margin: 0 auto;
}

.benefits-image img {
    border-radius: 0.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: auto;
    max-width: 600px; /* ou 500px, ajuste como quiser */
    display: block;
    margin: 0 auto; /* centraliza */
}



/* Testimonial Section */
.testimonial-section {
    position: relative;
    overflow: visible;
    padding: 5rem 0;
    background: white;
    z-index: 2;
  }
  
  /* SVG que fica no fundo da testimonial section */
  .svg-background {
    position: absolute;
    top: 0;
    right: 0;
    height: 120%;
    max-width: 50%;
    z-index: 1; /* abaixo do conteúdo */
    pointer-events: none;
  }
  
  .testimonial-content {
    position: relative;
    z-index: 1; /* acima do SVG */
  }

.testimonial-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

.testimonial-text h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: black;
    margin-bottom: 1.5rem;
}

.btn-quote{
    background: #ED1C24;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-quote:hover {
    background: #fc1d24;
    color: white;
}


.testimonial-description {
    font-size: 1.125rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.quote-box {
    background: #f3f4f6;
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-bottom: 4rem;
}

.quote-box p {
    color: #374151;
    font-style: italic;
}

.testimonial-image{
    max-width: 400px;
    margin: 0 auto;
}

.testimonial-image img {
    border-radius: 0.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: auto;
    max-width: 400px; /* ou 500px, ajuste como quiser */
    display: block;
    margin: 0 auto; /* centraliza */
}


/* Video Section */
.video-section {
    position: relative;
    /* z-index: 0; */
    padding: 5rem 0;
    background: #f9fafb;
    color: #000;
    text-align: center;
}

.video-container {
    position: relative; /* ← necessário para o z-index funcionar */
    margin-bottom: 3rem;
    z-index: 3;
}

.video-player {
    background: #374151;
    border-radius: 0.5rem;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    max-width: 64rem;
    margin: 0 auto;
    padding: 2rem;
}

.btn-video{
    background: #ED1C24;
    color: white;
    border: none;
    padding: 1rem 3rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-video:hover {
    background: #fc1d24;
    color: white;
}


.video-overlay {
    position: absolute;
    inset: 0;
    background: #FFA500;
    opacity: 0.2;
    border-radius: 0.5rem;
}

.play-button {
    font-size: 4rem;
    color: #FFA500;
    z-index: 10;
}

.video-text {
    max-width: 48rem;
    margin: 0 auto;
}

.video-text h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.video-text p {
    font-size: 1.0rem;
    color: #000;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.video-placeholder {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 */
    background: #000;
    overflow: hidden;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: white;
    cursor: pointer;
    z-index: 1;
}

/* Products Section */
.products-section {
    position: relative;
    overflow: visible;
    z-index: 2;
    padding: 5rem 0;
    background: white;
}

.svg-products{
    position: absolute;
    top: 0;
    left: 0;
    height: 120%;
    max-width: 50%;
    z-index: 1;
    pointer-events: none; 
}

.products-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s;
}

.product-card:hover {
    transform: scale(1.05);
}

.product-card.featured {
    border: 4px solid #FFA500;
}

.product-card img {
    width: 100%;
    height: 12rem;
    object-fit: cover;
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: black;
    margin-bottom: 0.75rem;
}

.product-info p {
    color: #6b7280;
    margin-bottom: 1rem;
}

.product-link {
    color: #ED1C24;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.product-link:hover {
    color: #dc2626;
}

.product-card img {
    width: 100%;
    height: 300px;
    object-fit: contain;
    background: white;
}

/* Reviews Section */
.reviews-section {
    position: relative;
    /* z-index: 3; */
    padding: 5rem 0;
    background: #f9fafb;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    background: white;
    border: 2px solid #ED1C24;
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.quote-mark {
    color: #ED1C24;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.review-card p {
    color: #374151;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.review-author {
    border-top: 1px solid #e5e7eb;
    padding-top: 1rem;
}

.review-author strong {
    display: block;
    color: black;
    font-weight: 600;
}

.review-author span {
    color: #6b7280;
    font-size: 0.875rem;
}

/* Support Section */
.support-section {
    padding: 4rem 0;
    background: #ED1C24;
    color: white;
    text-align: center;
}

.support-content {
    max-width: 48rem;
    margin: 0 auto;
}

.support-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;    
    flex-wrap: wrap;
    text-align: left;
}

.support-heading h2 {
    margin: 0;
    font-size: 1.875rem;
    font-weight: bold;
}

.support-icon {
    font-size: 3rem;
    width: 100px;
    height: 100px;
    margin-bottom: 1.5rem;
}

.support-content h2 {
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.support-form {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    max-width: 28rem;
    margin: 0 auto;
}

.support-input {
    background: white;
    color: black;
    border: none;
    padding: 0.75rem;
    border-radius: 0.375rem;
    font-size: 1rem;
}

.btn-support {
    background: black;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-support:hover {
    background: #374151;
}


/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: #f9fafb;
}

.contact-container {
    /* max-width: 32rem; */
    margin: 0 auto;
}

.contact-form {
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    padding: 0.75rem;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 6rem;
}

.btn-contact {
    width: 100%;
    background: black;
    color: white;
    border: none;
    padding: 1rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-contact:hover {
    background: #374151;
}

/* Footer */
.footer {
    background: white;
    color: #000;
    padding: 4rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.footer-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #000;
    margin-bottom: 1rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #000;
}

.footer-menu {
    list-style: none;
}

.footer-menu.two-columns {
    display: flex;
    flex-wrap: wrap;
    max-width: 200px; /* Ajuste conforme necessário */
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-menu.two-columns li {
    width: 50%;
    margin-bottom: 8px; /* Espaço entre linhas */
}

.footer-menu li {
    margin-bottom: 0.5rem;
}

.footer-menu a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-menu a:hover {
    color: #000;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {      
    font-size: 1.5rem;
    text-decoration: none;
    transition: color 0.3s;
}

.facebook{
    color: #3b5998;  
}



.social-link:hover {
    color: white;
}

.social-link svg{
    width: 30px;
    height: 30px;
}

.footer-bottom {
    border-top: 1px solid #FFA500;
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
    color: #000;
}

/* Animações */
@keyframes fade-in {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text {
    animation: fade-in 0.6s ease-out;
}

/* Responsividade */
/* === Dispositivos pequenos: até 640px === */
@media (max-width: 640px) {
    .hero-title,
    .section-header h2 {
        font-size: 1rem;
    }

    /* .testimonial-text h2 {
        font-size: 1.5rem;
    } */

    .testimonial-text span {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .testimonial-description {
        font-size: 1rem;
    }

    .support-icon{
        width: 50px;
        height: 50px;
    }
    
    .support-content h2{
        font-size: 1rem;
    }
    
    .btn-contact{
        font-size: 1rem;
    }
}

/* === Dispositivos pequenos a médios: até 800px === */
@media (max-width: 800px) {
    .hero-content {
        text-align: center;
    }

    .images-grid{
        display: none;
    }

    .hero-images-celular{
        display: flex;  
        margin-bottom: 2rem;      
    }

    .hero-images-celular img{
        transform: none;
        width: 330px;
        height: 200px;
    }

    .hero-text {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-title{
        color: #000;
        font-size: 1.5rem;
    }

    .hero-subtitle{
        color: #FFA500;
        font-size: 1rem;
    }

    .hero-bg-svg,
    .svg-products,
    .svg-background {
        display: none;
        position: absolute;
        top: 0;
        left: 0;
        width: 0;
        height: 0;
        z-index: 0;
        pointer-events: none;
    }

    .hero-section {
        padding: 2rem 1rem;
    }

    .btn-hero {
        background: #ED1C24;
        color: #fff;
        border: none;
        padding: 1rem 2rem;
        font-size: 1.125rem;
        font-weight: 600;
        border-radius: 0.375rem;
        cursor: pointer;
        transition: background 0.3s;
    }

    .benefits-section {
        position: relative;
        z-index: 0;
        margin-top: 0;
        padding-top: 10px;
        padding-bottom: 20px;
        background: #f9fafb;
    }

    .logo img {
        max-width: 150px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .btn-header {
        display: none;
    }

    .benefits-section{
        padding-top: 40px;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        right: 20px;
        background-color: #fff;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        padding: 1rem;
        z-index: 1000;
    }

    .nav-menu.open {
        display: flex;
        width: 200px;
    }

    .nav-link {
        padding: 0.5rem 0;
    }
    
    .section-header{
        margin-bottom: 3rem;
    }

    .section-header h2{
        font-size: 20px;
    }

    .benefits-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem; /* ou o espaçamento que preferir */
    }

    .benefit-text h3{
        font-size: 15px;
    }

    .benefit-text p{
        font-size: 12px;
    }

    .benefit-text {
        text-align: center;
    }
    
    .highlight-box, .btn-benefit {
        grid-column: span 2;
    }    
    
    .highlight-box{
        margin-top: 2rem;
    }

    .highlight-box h3{
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
    }

    .highlight-box p{
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        margin-bottom: 1rem;
    }

    .benefits-content{
        gap: 2rem;
    }
    
    .benefits-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .benefits-list a {
        grid-column: span 2;
        justify-self: center;        
        border-radius: 8px;
        font-weight: bold;
        background: #ED1C24;
        color: #fff;
        border: none;
        cursor: pointer;
    }

    .benefits-image{
        max-width: 300px;
        margin: 0 auto;
    }
    
    .testimonial-content{
        gap: 2rem;
    }

    .testimonial-section{
        padding: 2rem 0;
    }

    .testimonial-text h2{
        font-size: 17px;
    }

    .testimonial-text span{
        display: inline;
    }

    .testimonial-text p{
        font-size: 13px
    }

    .quote-box{
        margin-bottom: 2rem;
    }

    .testimonial-text a{
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
    }
    
    .testimonial-image{
        max-width: 300px;
        margin: 0 auto;
    }

    .video-section{
        padding: 3rem 0;
    }

    .video-text h2{
        font-size: 20px;
    }

    .video-text p{
        font-size: 14px;
    }
    
    .products-section{
        padding: 3rem 0;
    }

    .section-header p{
        font-size: 16px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-section {
        margin-bottom: 2rem;
    }

    .contact-info {
        align-items: center;
    }

    .contact-item {
        justify-content: center;
    }

    .footer-menu.two-columns {
        flex-direction: column;
        align-items: center;
        max-width: 100%;
    }

    .footer-menu.two-columns li {
        width: auto;
    }

    .social-links {
        justify-content: center;
    }

    .social-link svg {
        width: 36px;
        height: 36px;
    }

    .footer-bottom {
        font-size: 0.875rem;
    }

    .logo{
        max-width: none;
    }
}

/* === Dispositivos médios: a partir de 768px === */
@media (min-width: 768px) {

    .hamburger {
        display: none;
    }

    .nav-menu {
        display: flex !important;
        position: static;
        flex-direction: row;
        box-shadow: none;
        padding: 0;
    }

    .nav-menu {
        display: flex;
    }

    .support-form {
        flex-direction: row;
    }
}

/* === Dispositivos grandes: a partir de 1024px === */
@media (min-width: 1024px) {
    .hero-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .hero-title {
        font-size: 3.75rem;
    }

    .hero-img {
        height: 300px;
    }

    .benefits-content,
    .testimonial-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 1300px) {
    .hero-bg-svg {
        width: 100%;
    }
}

@media (min-width: 1024px) and (max-width: 1299px) {
    .hero-title {
        font-size: 3rem;
    }
}
