/* ===== RESET E CONFIGURAÇÕES GLOBAIS ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cores */
    --primary-color: #FFB000;
    --primary-dark: #F5A900;
    --text-dark: #343132;
    --text-gray: #514D4E;
    --white: #FFFFFF;
    --black: #1A1A1A;
    
    /* Tipografia */
    --font-family: 'Plus Jakarta Sans', sans-serif;
    
    /* Espaçamentos */
    --container-padding: 6%;
    --container-max-width: 1440px;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* ===== CONTAINER ===== */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ===== COMPONENTES REUTILIZÁVEIS ===== */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: var(--font-family);
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 149, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--text-dark);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 10px 20px;
    font-size: 1.125rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 50px;
}

@media (max-width: 480px) {
    .btn-lg {
        font-size: 1rem;
    }
}

/* ===== HEADER ===== */
.header {
    position: relative;
    background: var(--white);
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    backdrop-filter: blur(15px);
    transform: translateY(-100%);
    animation: slideDown 0.3s ease forwards;
    box-shadow: 0 5px 15px rgba(255, 149, 0, 0.3);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(20px);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.navbar {
    padding: 32px 0px;
    transition: padding 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
    transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.fixed .logo img {
    height: 35px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
}

.nav-link {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    position: relative;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--primary-color);
}

.nav-link.active::after {
    width: 100%;
}

/* Botão do menu mobile */
.mobile-menu-toggle {
    display: none;
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1000;
}

.mobile-menu-toggle .menu-icon,
.mobile-menu-toggle .close-icon {
    width: 36px;
    height: 36px;
    color: var(--text-dark);
    transition: all 0.3s ease;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.mobile-menu-toggle .menu-icon {
    opacity: 1;
}

.mobile-menu-toggle .close-icon {
    opacity: 0;
}

.mobile-menu-toggle.active .menu-icon {
    opacity: 0;
}

.mobile-menu-toggle.active .close-icon {
    opacity: 1;
}

/* ===== MENU MOBILE ===== */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-overlay.active {
    display: block;
    opacity: 1;
}

@media (max-width: 1024px) {
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        position: relative;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;

        background: var(--white);
        padding: 80px 20px 20px;
        transition: right 0.3s ease;
        z-index: 1000;
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-top: 0;
        border-radius: 12px 0 0 12px;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        font-size: 18px;
        padding: 12px 0;
        width: 100%;
        display: block;
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .nav-link.btn {
        margin-top: 20px;
        text-align: center;
    }
}

/* Mobile pequeno - ainda mais compacto */
@media (max-width: 480px) {
    .nav-menu {
        min-width: 200px;
        max-width: 240px;
    }

    .logo img {
        height: 30px;
        width: auto;
        transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

  

    .nav-link {
        font-size: 1rem;
        padding: 10px 20px;
    }

    .nav-link.btn {
        margin: 10px 20px 6px 20px;
        padding: 8px 16px;
        width: calc(100% - 40px);
        font-size: 14px;
    }
}

/* ===== HERO SECTION ===== */
.hero {
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), var(--black);
    color: var(--white);
    position: relative;
    min-height: 600px;
    height: 600px;
    border-radius: 20px;
    margin-bottom: 80px;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: #34313280;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    max-width: 700px;
    width: 100%;
    color: #FFF9EF;
}

.hero-title .highlight {
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.125rem;
    font-weight: 600;
    color: #FFF9EF;
    margin-bottom: 30px;
    margin-left: auto;
    margin-right: auto;
    max-width: 600px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== MEDIA QUERIES ===== */

/* Tablet */
@media (max-width: 1024px) {
    .hero {
        margin-bottom: 80px;
        border-radius: 15px;
    }
    
    .hero-title {
        font-size: 3rem;
        max-width: 600px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        max-width: 500px;
    }
}

/* Mobile Grande */
@media (max-width: 768px) {
    .hero {
        min-height: 80vh;
        height: auto;
        border-radius: 12px;
        padding: 3rem 0;
    }
    
    .hero-content {
        padding: 0 1.5rem;
        justify-content: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.3;
        margin-bottom: 16px;
        max-width: 100%;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 24px;
        max-width: 100%;
        line-height: 1.5;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
        justify-content: center;
    }
}

/* Mobile Pequeno */
@media (max-width: 480px) {
    .hero {
        min-height: 70vh;
        border-radius: 8px;
        padding: 2rem 0;
    }
    
    .hero-content {
        padding: 0 0rem;
    }
    
    .hero-title {
        font-size: 2.25rem;
        line-height: 1.2;
        margin-bottom: 30px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 24px;
        line-height: 1.4;
    }
    
    .hero-buttons .btn {
        max-width: 240px;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

/* ===== CARDS SECTION ===== */

.solutions-grid {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.solution-card {
    background: var(--white);
    display: flex;
    align-items: center;
    gap: 32px;
}

.card-2 {
    flex-direction: row-reverse;
}

.card-image {
    padding: 32px;
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFF9EF;
    border: 2px solid #EFA401;
    border-radius: 20px;
}

.card-image-totem {
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFF9EF;
    border: 2px solid #EFA401;
    border-radius: 20px;
}

.card-image-totem img {
    margin-top: -48px;
}

.card-image img {
    max-width: 100%;
    height: auto;
    width: auto;
}

.card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: self-start;
}

.card-tag {
    color: var(--primary-color);
    font-size: 1.125rem;
    font-weight: 600;
    text-transform: uppercase;
    align-self: flex-start;
}

.card-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.3;
}

.card-description {
    color: var(--text-gray);
    font-size: 1.125rem;
    line-height: 1.5;
    margin-bottom: 24px;
}

/* ===== RESPONSIVE PARA OS CARDS ===== */
@media (max-width: 1024px) {
    .solutions-grid {
        gap: 60px;
    }

    .solution-card {
        flex-direction: column;
        text-align: center;
        gap: 32px;
    }
    
    .card-image {
        max-width: 100%;
        height: auto;
        width: auto;
        padding: 24px;
    }

    .card-image-totem {
        max-width: 507px;
        height: auto;
        width: 100%;
        padding: 0px 24px;
    }

    .card-image-totem img {
        height: 240px;
    }

    
    .card-content {
        align-items: center;
    }
    
    .card-tag {
        align-self: start;
    }
    
    .card-title {
        font-size: 2rem;
        align-self: start;
        text-align: start;
    }
    
    .card-description {
        text-align: start;
        font-size: 1rem;
    }
}

/* ===== BENEFITS SECTION ===== */
.benefits-section {
    padding: 4rem 0;
    background: var(--white);
}

.benefits-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.benefits-content {
    display: flex;
    flex-direction: column;
}


.benefits-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.benefits-description {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.5;
    margin: 0 0 2rem 0;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    list-style: none;
    padding: 0;
}

.benefits-list .benefit-item:not(:last-child) {
    border-bottom: 1.5px solid #E0E0E0;
    padding-bottom: 16px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.95rem;
    color: var(--text-gray);
    font-weight: 500;
}

.benefit-icon {
    width: 24px;
    height: 24px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.benefit-icon svg {
    width: 14px;
    height: 14px;
    stroke-width: 3;
}


.benefits-image {
    width: 100%;
    object-fit: cover;
}

.benefits-image:first-child { display: block; }
.benefits-image:last-child { display: none; }
/* ===== RESPONSIVE PARA BENEFITS ===== */

@media (max-width: 1024px) {
 
    .benefits-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .benefits-content { order: 2; }       
    .benefits-image-container { order: 1; }

    .benefits-title {
        font-size: 2rem;
    }

    .benefits-image {
       width: 60%;
    }

    .benefits-image-container {
        display: flex;
        justify-content: center;
    }

    .benefits-image:first-child { display: none; }
    .benefits-image:last-child { display: block; }
}

@media (max-width: 480px) { 

    .benefits-image {
        width: 100%;
     }

    }
     
     

/* ===== FEATURES SECTION ===== */
.features-section {
    padding: 4rem 2rem;
    background: #FFF9EF;
    border-radius: 20px;
}

.features-header {
    text-align: center;
    margin-bottom: 40px;
}

.features-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.3;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-card {
    background: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 176, 0, 0.15);
}


.feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon-check {
    width: 20px;
    height: 20px;
    color: var(--primary-color);
    margin-right: 10px;
    flex-shrink: 0;
}





.feature-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
}

.feature-card-description {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

/* ===== RESPONSIVE PARA FEATURES ===== */
@media (max-width: 1024px) {

    .features-section {
        padding: 2rem 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 400px;
    }

    .features-title {
        font-size: 2rem;
    }

    .feature-card {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    

    .features-header {
        margin-bottom: 2rem;
    }

 
 

  

    .feature-card-title {
        font-size: 1.25rem;
    }


}

/* ===== PARTNERS SECTION - JavaScript Version ===== */
.partners-section {
    padding: 4rem 0;
    background: var(--white);
    overflow: hidden;
}

.partners-header {
    text-align: center;
    margin-bottom: 3rem;
}


.partners-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.3;
}

.partners-carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
    height: 100px;
}

.partners-carousel::before,
.partners-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.partners-carousel::before {
    left: 0;
    background: linear-gradient(to right,
        #ffffff 0%,
        rgba(255, 255, 255, 0) 100%);
}

.partners-carousel::after {
    right: 0;
    background: linear-gradient(to left, 
        #ffffff 0%, 
        rgba(255, 255, 255, 0) 100%);
}

.partners-track {
    display: flex;
    align-items: center;
    height: 100%;
    position: relative;
    will-change: transform;
}

.partner-logo {
    width: 250px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin: 0 10px;
}

.partner-logo img {
    max-width: 140px;
    max-height: 60px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.partner-logo:hover img {
    transform: scale(1.05);
}

/* ===== RESPONSIVE PARA PARTNERS JS ===== */
@media (max-width: 1024px) {
    .partners-title {
        font-size: 2rem;
    }
    
    .partner-logo {
        width: 200px;
        height: 70px;
        margin: 0 10px;
    }
    
    .partner-logo img {
        max-width: 120px;
        max-height: 50px;
    }
}

@media (max-width: 768px) {
   
    
    .partners-header {
        margin-bottom: 2rem;
    }
    
    .partners-title {
        font-size: 1.8rem;
    }
    
    .partners-carousel::before,
    .partners-carousel::after {
        width: 100px;
    }
    
    .partner-logo {
        width: 180px;
        height: 60px;
        margin: 0 10px;
    }
    
    .partner-logo img {
        max-width: 100px;
        max-height: 40px;
    }
}

/* ===== GALLERY CAROUSEL SECTION ===== */
.gallery-section {
    padding: 4rem 0;
    background: var(--white);
    overflow: hidden;
}

.gallery-header {
    text-align: center;
    margin-bottom: 3rem;
}

.gallery-tag {
        color: var(--primary-color);
        font-size: 1.125rem;
        font-weight: 600;
        text-transform: uppercase;
        align-self: flex-start;
}

.gallery-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.3;
}

.gallery-carousel-container {
    display: flex;
    flex-direction: column;
    gap:20px;
    width: 100%;
    overflow: hidden;
}

.gallery-carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.gallery-carousel::before,
.gallery-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.gallery-carousel::before {
    left: 0;
    background: linear-gradient(to right,
        #ffffff 0%,
        rgba(255, 255, 255, 0) 100%);
}

.gallery-carousel::after {
    right: 0;
    background: linear-gradient(to left, 
        #ffffff 0%, 
        rgba(255, 255, 255, 0) 100%);
}

.gallery-track {
    display: flex;
    align-items: center;
    height: 100%;
    position: relative;
    will-change: transform;
}

.gallery-item {
    width: 400px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin: 0 10px;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* ===== RESPONSIVE PARA GALLERY CAROUSEL ===== */
@media (max-width: 1024px) {
    .gallery-title {
        font-size: 2rem;
    }
    

    .gallery-item {
        width: 250px;
        height: 180px;
        margin: 0 8px;
    }
}

@media (max-width: 768px) {
    .gallery-section {
        padding-top: 0px;
    }
    
    .gallery-header {
        margin-bottom: 2rem;
    }
    
    .gallery-title {
        font-size: 1.8rem;
    }
    
    .gallery-carousel::before,
    .gallery-carousel::after {
        width: 40px;
    }
    

    
    .gallery-item {
        width: 220px;
        height: 180px;
        margin: 0 10px;
    }
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    padding: 4rem;
    background: #F9F9F9;
    border-radius: 20px;
    overflow: hidden;
}

.testimonials-header {
    text-align: start;
    margin-bottom: 2rem;
    padding-left: 20px;
    position: relative;
}

.testimonials-tag {
    color: var(--primary-color);
    font-size: 1.125rem;
    font-weight: 600;
    text-transform: uppercase;
    align-self: flex-start;
}

.testimonials-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.3;
}

.testimonials-navigation {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 0.5rem;
}

.testimonials-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--primary-color); 
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.testimonials-nav-btn:hover {
    transform: scale(1.05);
}

.testimonials-nav-btn svg {
    width: 30px;
    height: 30px;
}

.testimonials-carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
    padding: 20px;
}

.testimonials-track {
    display: flex;
    align-items: stretch;
    height: 100%;
    position: relative;
    will-change: transform;
    transition: transform 0.5s ease;
}

.testimonial-card {
    flex: 0 0 auto; 
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 6px 17.3px #3443631A;
    transition: transform 0.3s ease;
    position: relative;
    box-sizing: border-box;
}


.testimonial-header {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
}

.testimonial-star {
    color: #EFA401;
    font-size: 1.25rem;
}

.testimonial-star svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.testimonial-quote-icon {
    width: 54px;
    height: 42px;
    flex-shrink: 0;
}

.testimonial-content {
    flex: 1;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-text {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    margin-top: auto; 
}

.testimonial-name {
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    font-size: 1rem;
}

.testimonial-company {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin: 0;
}

.testimonials-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.testimonials-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #DDD;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonials-indicator.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* ===== RESPONSIVE PARA TESTIMONIALS ===== */
@media (max-width: 1024px) {
    .testimonials-section {
        padding: 3rem 2rem;
    }
    
    .testimonials-title {
        font-size: 2rem;
    }
    
    .testimonials-navigation {
        display: none;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 3rem 1rem;
    }
    
    .testimonials-header {
        margin-bottom: 2rem;
    }
    
    .testimonials-title {
        font-size: 1.8rem;
    }
    
    .testimonial-card {
        padding: 1.25rem;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
    }

    .testimonial-quote-icon {
        width: 32px;
        height: 22px;
        flex-shrink: 0;
    }

    .testimonial-stars {
        display: flex;
        gap: 0.25rem;
    }
    
    .testimonial-star {
        color: #EFA401;
        font-size: 1.25rem;
    }
    
    .testimonial-star svg {
        width: 16px;
        height: 16px;
        fill: currentColor; 
    }
}

/* ===== PRICING SECTION ===== */
.pricing-section {
    padding: 4rem 2rem;
    margin: 0 auto;
    text-align: center;
    max-width: 832px;
}

.pricing-header {
    margin-bottom: 40px;
}

.pricing-tag {
        color: var(--primary-color);
        font-size: 1.125rem;
        font-weight: 600;
        text-transform: uppercase;
        align-self: flex-start;
}

.pricing-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.2;
}

.pricing-plans {
    display: flex;
    align-items: flex-start;
    margin-top: 2rem;
}

.plan-card {
    width: 100%;
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
    text-align: left;
    display: flex;
    flex-direction: column;
} 

.plan-card.essencial {
    border: 1.5px solid #787878;
    margin-right: -20px;
    align-self: flex-start;
    margin-top: 70px;
}

.plan-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.02);
}

.plan-header {
    margin-bottom: 2rem;
}

.plan-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.plan-badge {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

.plan-description {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.5;
}

.plan-button {
    background: var(--border-color);
    color: var(--text-dark);
    border: 1.5px solid #787878;
    color: #787878;
    padding: 12px 2rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    margin-bottom: 2rem;
}

.plan-button:hover {
    background: #F7F7F7;
    transform: translateY(-2px);
}

.plan-button.primary {
    background: var(--primary-color);
    color: var(--white);
    border: none;
}

.plan-button.primary:hover {
    background: var(--primary-dark);
}

.plan-features {
    list-style: none;
    margin: 0 0 2rem 0;
    flex: 1;
}

.plan-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.plan-feature:last-child {
    margin-bottom: 0;
}

.plan-link {
    color: var(--text-gray);
    font-size: 0.85rem;
    margin-bottom: 1rem;
    display: block;
    font-weight: 500;
}

.plan-feature.extra-feature {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    margin-bottom: 0;
    transition: all 0.3s ease;
}

.plan-card.expanded .plan-feature.extra-feature {
    max-height: 50px;
    opacity: 1;
    margin-bottom: 1rem;
}
/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .pricing-section {
        padding: 64px 0rem;
    }

    .pricing-title {
        font-size: 2rem;
    }

    .pricing-plans {
        flex-direction: column-reverse;
        gap: 32px;
    }

    .plan-card {
        padding: 2rem;
    }

    .plan-card.featured {
        transform: none;
        order: -1;
    }

    .plan-card.essencial {
        margin-top: 0px!important;
        margin-right: 0px;
       
    }

    .plan-card.featured:hover {
        transform: translateY(-8px);
    }

    .plan-title-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .pricing-title {
        font-size: 1.75rem;
    }

    .plan-card {
        padding: 1.5rem;
    }

    .plan-name {
        font-size: 1.3rem;
    }
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 4rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.faq-header {
    margin-bottom: 40px;
}

.faq-tag {
    color: var(--primary-color);
    font-size: 1.125rem;
    font-weight: 600;
    text-transform: uppercase;
    align-self: flex-start;
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.2;
}

.faq-container {
    text-align: left;
}

.faq-item {
    border-bottom: 1.5px solid #E0E0E0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    padding: 1.5rem 0;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
}

.faq-question-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.faq-number {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 36px;
    line-height: 1;
    flex-shrink: 0;
    min-width: 60px;
}

.faq-question-text {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.3;
}

.faq-icon {
    width: 24px;
    height: 24px;
    color: var(--text-gray);
    transition: transform 0.6s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.6s ease;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-answer-content {
    padding: 0 0 1.5rem 0px;
    color: var(--text-gray);
    line-height: 1.6;
}

.faq-answer-item {
    margin-bottom: 0.5rem;
}

.faq-answer-item:last-child {
    margin-bottom: 0;
}

.faq-answer-label {
    font-weight: 600;
    color: var(--text-dark);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .faq-section {
        padding: 0rem 0rem;
    }

    .faq-title {
        font-size: 2rem;
    }

    .faq-number {
        font-size: 28px;
        min-width: 50px;
    }

    .faq-question-text {
        font-size: 22px;
    }

    .faq-question {
        padding: 1.25rem 0;
    }

    .faq-answer-content {
        padding: 0 0 1.25rem 0px;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 0rem 0rem;
    }

    .faq-title {
        font-size: 1.75rem;
    }

    .faq-number {
        font-size: 24px;
        min-width: 40px;
    }

    .faq-question-text {
        font-size: 18px;
    }

    .faq-question {
        padding: 1rem 0;
    }

    .faq-question-content {
        gap: 0.75rem;
    }

    .faq-answer-content {
        padding: 0 0 1rem 0px;
        font-size: 0.9rem;
    }
}

/* ===== STORE SECTION ===== */
.store-section {
    background: #FFF7ED;
    border-radius: 20px;
    padding: 0 4rem;
    margin: 80px auto;
}

.store-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.store-image {
    flex: 0 0 40%;
    display: flex;
    align-items: center;
}

.store-image img {
    width: 100%;
    height: auto;
    margin-top: -40px;
    max-width: 400px;
    object-fit: cover;
}

.store-content {
    padding: 2rem 0px;
    display: flex;
    flex-direction: column;
    align-items: start;
}


.store-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.store-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.store-button {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.store-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .store-section {
        padding: 0 2rem;
        margin: 60px auto;
    }

    .store-title {
        font-size: 2rem;
    }

    .store-description {
        font-size: 1rem;
    }

    .store-content {
        align-items: center;
    }
    
}

@media (max-width: 768px) {
    .store-section {
        padding: 0 1.5rem;
    }

    .store-container {
        flex-direction: column;
        min-height: auto;
        text-align: center;
    }

    .store-image {
        flex: none;
        order: 1;
    }


    .store-title {
        font-size: 1.75rem;
    }

    .store-description {
        font-size: 0.95rem;
    }

    .store-button {
        padding: 0.875rem 2rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .store-section {
        padding: 0rem 1rem;
    }

    .store-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .store-description {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }

    .store-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* ===== FOOTER SECTION ===== */
.site-footer {
    background: #343132;
    color: #FFFFFF;
    padding: 60px 0 20px;
}

.site-footer .container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 6%;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-self: start;
}

.footer-logo {
    max-width: 180px;
    height: auto;
}

.footer-description {
    color: #FBFCFF;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #343132;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-icons a:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-navigation h3,
.footer-policies h3,
.footer-contact h3 {
    color: #FFFFFF;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: inline-block;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #FBFCFF;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.contact-info i {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    text-align: center;
    flex-shrink: 0;
  }
  
.contact-info a {
    color: #FBFCFF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--primary-color);
}

.whatsapp-link {
    font-weight: 500;
}

.footer-bottom {
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    color: #FBFCFF;
    font-size: 1rem;
    margin: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .site-footer .container {
        padding: 0 1.5rem;
    }

    .footer-content {
        gap: 2rem;
    }

    .footer-columns {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 2.5rem 0 1rem;
    }

    .site-footer .container {
        padding: 0 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-columns {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-logo {
        max-width: 180px;
    }
}

@media (max-width: 480px) {
    .site-footer {
        padding: 2rem 0 1rem;
    }

    .footer-content {
        gap: 1.5rem;
    }

    .footer-columns {
        gap: 1.5rem;
    }

    .contact-info li {
        gap: 0.5rem;
        text-align: left;
        align-items: center;
    }

    .contact-info i {
        align-self: flex-start;
    }

    .social-icons a {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
}