:root {
    --primary-color: #EB8F63;
    --primary-dark: #D47D52;
    --primary-light: #F4C2A7;
    --secondary-color: #EDDDC0;
    --secondary-dark: #E4D1B0;
    --accent-color: #ffd700;
    --dark-color: #2D3047;
    --gray-color: #8D99AE;
    --light-color: #F7F9FB;
    --white-color: #ffffff;
    --box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease-in-out;

    /* Variaveis do Carrossel para garantir que o texto não sobrepõe as setas */
    --carousel-arrow-size: 50px;
    --carousel-arrow-offset: 25px;
    --carousel-padding-buffer: 30px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
    line-height: 1.3;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
    position: relative;
    margin-bottom: 2rem;
}

h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: var(--white-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

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

.btn-secondary:hover {
    background-color: var(--secondary-dark);
    color: var(--white-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

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

.btn-outline:hover {
    background-color: var(--white-color);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Botão outline para fundos claros */
.btn-outline-dark {
    background-color: rgba(235, 143, 99, 0.1);
    color: #d4822a;
    border: 4px solid #d4822a;
    font-weight: 700;
    position: relative;
    box-shadow: 0 0 0 1px rgba(212, 130, 42, 0.3);
}

.btn-outline-dark:hover {
    background-color: #d4822a;
    color: var(--white-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 130, 42, 0.5);
    border-color: #d4822a;
}

.btn-group {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    transition: var(--transition);
    padding: 1rem 0;
}

.header.scrolled {
    background-color: var(--white-color);
    box-shadow: var(--box-shadow);
    padding: 0.5rem 0;
}

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

.logo img {
    height: 60px;
    transition: var(--transition);
}

.header.scrolled .logo img {
    height: 50px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
}

.nav-item {
    position: relative;
    white-space: nowrap;
}

.nav-item.nav-cta {
    margin-left: 1rem;
}

.btn-nav {
    padding: 0.6rem 1.5rem !important;
    font-size: 0.9rem !important;
    border-radius: 25px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 10px rgba(235, 143, 99, 0.3) !important;
}

.btn-nav:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 15px rgba(235, 143, 99, 0.4) !important;
}

.nav-link {
    color: var(--white-color);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.header.scrolled .nav-link {
    color: var(--dark-color);
}

.nav-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover:after,
.nav-link.active:after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--white-color);
}

.header.scrolled .mobile-toggle {
    color: var(--dark-color);
}

/* Hero Section */
.negocio-page .hero {
    height: 100vh;
    background-image: linear-gradient(rgba(45, 48, 71, 0.7), rgba(45, 48, 71, 0.7)), url('../images/negocio.png') !important;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-content {
    max-width: 800px;
    color: var(--white-color);
    text-align: center;
    margin: 0 auto;
    padding: 0 1rem;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease 0.2s;
    animation-fill-mode: both;
}

.hero-stat {
    font-size: 1.2rem;
    margin-top: 2rem;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    animation: fadeInUp 1s ease 0.4s;
    animation-fill-mode: both;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    color: #ffffff !important;
    font-size: 2rem;
}

/* Founder Story Section */
.founder-story {
    padding: 6rem 0;
    background-color: var(--light-color);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray-color);
    margin-top: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Video Presentation */
.founder-video-section {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: center;
    margin: 4rem 0;
}

.video-intro h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.video-intro p {
    font-size: 1.1rem;
    color: var(--gray-color);
    line-height: 1.6;
}

.founder-video {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* Aspect ratio 16:9 */
    background: #000;
    border-radius: 10px;
    overflow: hidden;
}

.founder-video-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: var(--transition);
    pointer-events: none;
}

.video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.play-button {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(235, 143, 99, 0.9);
    border: 3px solid var(--white-color);
    color: var(--white-color);
    font-size: 1.8rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
    position: relative;
}

.play-button:hover {
    background: var(--primary-color);
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(235, 143, 99, 0.4);
}

.play-button i {
    margin-left: 4px; /* Pequeno ajuste para centralizar o ícone play */
}

/* Estilos para controles personalizados quando o vídeo está tocando */
.founder-video-player::-webkit-media-controls {
    opacity: 0;
    transition: opacity 0.3s;
}

.founder-video-player:hover::-webkit-media-controls {
    opacity: 1;
}

/* Responsividade do vídeo */
@media (max-width: 768px) {
    .video-container {
        padding-bottom: 75%; /* Aspect ratio mais quadrado em mobile */
    }
    
    .play-button {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
    }
}

/* Story Highlights */
.story-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.highlight-card {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--white-color);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.highlight-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-size: 1.5rem;
}

.highlight-card h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.highlight-card p {
    color: var(--gray-color);
    font-size: 0.95rem;
}

/* Mission Statement */
.mission-statement {
    background: var(--white-color);
    padding: 3rem;
    border-radius: 15px;
    margin: 4rem 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.mission-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--dark-color);
}

.mission-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--gray-color);
}

.founder-quote {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    position: relative;
    margin-top: 2rem;
}

.founder-quote i {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 1rem;
}

.founder-quote p {
    font-style: italic;
    font-size: 1.3rem;
    color: var(--white-color);
    margin: 0 0 1rem 0;
    line-height: 1.6;
}

.quote-author {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 600;
}

/* Success Metrics */
.success-metrics {
    text-align: center;
    margin: 4rem 0;
}

.success-metrics h3 {
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--dark-color);
}

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

.stat-item {
    background: var(--white-color);
    padding: 2.5rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    text-align: center;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.stat-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-size: 1.2rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: block;
}

.stat-text {
    font-size: 0.95rem;
    color: var(--gray-color);
    font-weight: 500;
}

/* Call to Action */
.founder-cta {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    margin: 4rem 0;
}

.founder-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.founder-cta p {
    font-size: 1.1rem;
    color: var(--gray-color);
    margin-bottom: 2rem;
}

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

/* Benefits Section */
.benefits {
    padding: 6rem 0;
}

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

.section-title h2 {
    display: inline-block;
}

.section-title h2:after {
    left: 50%;
    transform: translateX(-50%);
}

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

.benefit-card {
    background-color: var(--white-color);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-10px);
}

.benefit-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.benefit-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* How It Works Section */
.how-it-works {
    padding: 6rem 0;
    background-color: var(--light-color);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.step-card {
    background-color: var(--white-color);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: var(--box-shadow);
    text-align: center;
    position: relative;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.step-title {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.testimonial {
    background-color: var(--white-color);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: var(--box-shadow);
    margin-top: 3rem;
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: 600;
}

/* Calculator Section */
.calculator {
    padding: 6rem 0;
}

.calculator-container {
    background-color: var(--white-color);
    border-radius: 10px;
    padding: 3rem;
    box-shadow: var(--box-shadow);
    max-width: 800px;
    margin: 0 auto;
}

.calculator-intro {
    margin-bottom: 2rem;
}

.calculator-form {
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.range-slider {
    width: 100%;
}

.calculator-result {
    background-color: var(--primary-light);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    margin-top: 2rem;
}

.result-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background-color: var(--light-color);
}

.testimonials-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.testimonials-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-card {
    /* Cada slide deve ocupar exatamente 100% do carrossel */
    flex: 0 0 100%;
    min-width: 100%;
    background-color: var(--white-color);
    border-radius: 15px;
    padding: 2.5rem; /* Padding base, a largura do conteúdo será controlada abaixo */
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transition: var(--transition);
    margin: 0; /* Remove margens que causavam deslocamento */
    box-sizing: border-box;
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    min-height: 80px;
}

.testimonial-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1.2rem;
    border: 3px solid #f0f0f0;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info {
    flex: 1;
    min-width: 0;
}

.testimonial-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
    color: var(--primary-color);
}

.testimonial-social {
    color: var(--gray-color);
    font-size: 0.9rem;
}

.testimonial-social a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.testimonial-social a:hover {
    color: var(--primary-color);
}

.testimonial-text {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1rem;
    /* Limita a largura do texto para não ficar sob as setas */
    max-width: 85ch;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-stats {
    font-size: 0.9rem;
    color: var(--gray-color);
    border-top: 1px solid #eee;
    padding-top: 1rem;
    font-weight: 500;
}

.carousel-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 30;
}

.carousel-btn {
    background: var(--white-color);
    border: none;
    width: var(--carousel-arrow-size);
    height: var(--carousel-arrow-size);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
    pointer-events: all;
    color: var(--primary-color);
    font-size: 1.2rem;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 31;
}

.carousel-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.carousel-prev {
    left: var(--carousel-arrow-offset);
}

.carousel-next {
    right: var(--carousel-arrow-offset);
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 2rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: #d1d5db;
    cursor: pointer;
    transition: var(--transition);
}

.indicator.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.indicator:hover {
    background: var(--primary-color);
    opacity: 0.7;
}

/* Partners Section */
.partners {
    padding: 6rem 0;
}

.partners-slider {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-top: 3rem;
}

.partner-logo {
    height: 60px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}

.partner-logo:hover {
    filter: grayscale(0);
    opacity: 1;
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
    background-color: var(--light-color);
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    background-color: var(--white-color);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.accordion-header {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--white-color);
    transition: var(--transition);
}

.accordion-header:hover {
    background-color: #f9f9f9;
}

.accordion-header h3 {
    font-size: 1.1rem;
    margin: 0;
}

.accordion-icon {
    font-size: 1.2rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.accordion-content {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-content p {
    padding: 0.5rem 0 1.5rem;
}

.accordion-item.active .accordion-header {
    background-color: #f9f9f9;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-item.active .accordion-content {
    max-height: 500px;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.contact-info {
    padding-right: 2rem;
    background: linear-gradient(145deg, var(--white-color) 0%, #fafbfc 100%);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08), 0 8px 25px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(235, 143, 99, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.contact-info-header h3 {
    color: var(--dark-color);
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-info-divider {
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    margin-bottom: 2rem;
}

.contact-info-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--gray-color);
    margin-bottom: 2.5rem;
}

.contact-info-subtitle h4 {
    color: var(--dark-color);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.contact-channels {
    margin-bottom: 2.5rem;
}

.contact-channel {
    display: flex;
    align-items: center;
    padding: 1.2rem;
    background-color: #f8f9fa;
    border-radius: 12px;
    margin-bottom: 1rem;
    border: 1px solid #e8ecf0;
    transition: all 0.3s ease;
}

.contact-channel:hover {
    background-color: var(--white-color);
    border-color: var(--primary-color);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(235, 143, 99, 0.1);
}

.contact-channel-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.2rem;
    box-shadow: 0 4px 12px rgba(235, 143, 99, 0.2);
}

.contact-channel-icon i {
    font-size: 1.3rem;
    color: var(--white-color);
}

.contact-channel-info {
    display: flex;
    flex-direction: column;
}

.contact-channel-label {
    font-size: 0.9rem;
    color: var(--gray-color);
    font-weight: 500;
    margin-bottom: 0.2rem;
}

.contact-channel-value {
    font-size: 1.1rem;
    color: var(--dark-color);
    font-weight: 600;
}

.contact-cta {
    background: linear-gradient(135deg, rgba(235, 143, 99, 0.1) 0%, rgba(237, 221, 192, 0.2) 100%);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(235, 143, 99, 0.2);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-cta-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-cta-icon i {
    font-size: 1.1rem;
    color: var(--white-color);
}

.contact-cta p {
    margin: 0;
    font-weight: 600;
    color: var(--dark-color);
    font-size: 1rem;
}

.contact-form {
    background: linear-gradient(145deg, var(--white-color) 0%, #fafbfc 100%);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1), 0 8px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(235, 143, 99, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.form-group {
    margin-bottom: 2rem;
    position: relative;
}

.form-label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: var(--dark-color);
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.form-control {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid #e8ecf0;
    border-radius: 12px;
    font-size: 1rem;
    background-color: #fafbfc;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: var(--white-color);
    box-shadow: 0 0 0 4px rgba(235, 143, 99, 0.1);
    transform: translateY(-2px);
}

.form-control:hover {
    border-color: var(--primary-color);
    background-color: var(--white-color);
}

.form-select {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid #e8ecf0;
    border-radius: 12px;
    font-size: 1rem;
    background-color: #fafbfc;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23EB8F63' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.2rem center;
    background-size: 16px 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: inherit;
}

.form-select:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: var(--white-color);
    box-shadow: 0 0 0 4px rgba(235, 143, 99, 0.1);
    transform: translateY(-2px);
}

.form-select:hover {
    border-color: var(--primary-color);
    background-color: var(--white-color);
}

/* Phone input container */
.phone-input-container {
    display: flex;
    gap: 0.5rem;
    align-items: stretch;
}

.country-code {
    width: 130px;
    flex-shrink: 0;
    padding: 1rem 0.8rem;
    font-size: 0.9rem;
    background-position: right 0.8rem center;
    background-size: 14px 10px;
}

.phone-number {
    flex: 1;
    min-width: 0;
}

/* Media query para mobile */
@media (max-width: 576px) {
    .phone-input-container {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .country-code {
        width: 100%;
    }
}

.form-check {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.8rem 1rem;
    background-color: #fafbfc;
    border-radius: 10px;
    border: 1px solid #e8ecf0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.form-check:hover {
    background-color: var(--white-color);
    border-color: var(--primary-color);
    transform: translateX(5px);
}

.form-check-input {
    margin-right: 0.8rem;
    width: 18px;
    height: 18px;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-check label {
    margin: 0;
    font-weight: 500;
    color: var(--dark-color);
    cursor: pointer;
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.form-check label i {
    font-size: 1.1rem;
    color: var(--primary-color);
}

.contact-preference {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.preference-option {
    flex: 1;
}

.preference-input {
    display: none;
}

.preference-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1rem;
    background-color: #f8f9fa;
    border: 2px solid #e8ecf0;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    min-height: 120px;
    gap: 0.8rem;
}

.preference-card:hover {
    background-color: var(--white-color);
    border-color: #d0d7de;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.preference-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e8ecf0;
    transition: all 0.3s ease;
}

.preference-icon i {
    font-size: 1.8rem;
    color: #8d99ae;
    transition: all 0.3s ease;
}

.preference-text {
    font-weight: 600;
    color: var(--gray-color);
    font-size: 1rem;
    transition: all 0.3s ease;
}

/* Estado activo para WhatsApp */
.preference-input:checked + .preference-card .preference-icon {
    background-color: var(--white-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.preference-input#whatsapp:checked + .preference-card {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.1) 0%, rgba(37, 211, 102, 0.05) 100%);
    border-color: #25D366;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.2);
}

.preference-input#whatsapp:checked + .preference-card .preference-icon i {
    color: #25D366;
}

.preference-input#whatsapp:checked + .preference-card .preference-text {
    color: #25D366;
    font-weight: 700;
}

/* Estado activo para Email */
.preference-input#email:checked + .preference-card {
    background: linear-gradient(135deg, rgba(235, 143, 99, 0.1) 0%, rgba(235, 143, 99, 0.05) 100%);
    border-color: var(--primary-color);
    box-shadow: 0 4px 20px rgba(235, 143, 99, 0.2);
}

.preference-input#email:checked + .preference-card .preference-icon i {
    color: var(--primary-color);
}

.preference-input#email:checked + .preference-card .preference-text {
    color: var(--primary-color);
    font-weight: 700;
}

.form-actions {
    margin-top: 2.5rem;
    text-align: center;
}

.btn-form-primary {
    width: 100% !important;
    padding: 1.2rem 2rem !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    border-radius: 15px !important;
    background: var(--gradient-primary) !important;
    border: none !important;
    color: var(--white-color) !important;
    box-shadow: 0 8px 25px rgba(235, 143, 99, 0.3) !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.8rem !important;
    margin-bottom: 1.5rem !important;
}

.btn-form-primary:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 35px rgba(235, 143, 99, 0.4) !important;
    background: linear-gradient(135deg, #D47D52 0%, #EB8F63 100%) !important;
}

.btn-form-primary i {
    font-size: 1.2rem;
}

.btn-form-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    border: 2px solid var(--primary-color);
    background-color: transparent;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.btn-form-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(235, 143, 99, 0.2);
}

.form-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    font-size: 0.9rem;
    color: var(--gray-color);
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.form-guarantee i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.form-bonus {
    background: linear-gradient(135deg, rgba(235, 143, 99, 0.1) 0%, rgba(237, 221, 192, 0.2) 100%);
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 1.5rem;
    font-weight: 500;
    border: 1px solid rgba(235, 143, 99, 0.2);
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: var(--white-color);
    padding: 4rem 0 2rem;
}

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

.footer-logo img {
    height: 60px;
    margin-bottom: 1rem;
}

.footer-slogan {
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    color: var(--white-color);
    font-size: 1.2rem;
    transition: var(--transition);
}

.footer-social a:hover {
    color: var(--primary-color);
}

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--light-color);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.footer-contact i {
    margin-right: 1rem;
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px);
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-20px) translateX(-50%);
    }
    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1200px) {
    .nav-menu {
        gap: 1rem;
    }
    
    .nav-link {
        font-size: 0.9rem;
    }
}

@media (max-width: 992px) {
    h1 {
        font-size: 2.8rem;
    }

    h2 {
        font-size: 2.2rem;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .founder-video-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .video-intro {
        order: 2;
        text-align: center;
    }
    
    .founder-video {
        order: 1;
        margin-bottom: 2rem;
    }
    
    .story-highlights {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .mission-statement {
        padding: 2rem;
    }
    
    .success-metrics h3 {
        font-size: 1.8rem;
    }
    
    .stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .founder-cta {
        padding: 2rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-info {
        padding-right: 0;
    }

    .testimonial-card {
        padding: 2.5rem 2rem; /* Padding simplificado para tablets */
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: var(--white-color);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
        z-index: 999;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-item {
        margin: 1.5rem 0;
    }
    
    .nav-item.nav-cta {
        margin-left: 0;
        margin-top: 2rem;
    }
    
    .nav-item.nav-cta .btn-nav {
        display: block;
        text-align: center;
        width: 200px;
        margin: 0 auto;
    }

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

    .mobile-toggle {
        display: block;
    }

    .btn-group {
        flex-direction: column;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        padding: 2rem 1rem; /* Padding simplificado para mobile */
    }

    .testimonial-image {
        width: 60px;
        height: 60px;
        margin-right: 1rem;
    }

    .testimonial-info h3 {
        font-size: 1.1rem;
    }

    .testimonial-text {
        font-size: 0.95rem;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .carousel-prev {
        margin-left: -20px;
    }

    .carousel-next {
        margin-right: -20px;
    }

    .carousel-indicators {
        margin-top: 1.5rem;
        gap: 0.6rem;
    }

    .indicator {
        width: 10px;
        height: 10px;
    }

    .stats {
        flex-direction: column;
        gap: 2rem;
    }

    .stat-item {
        margin-bottom: 1.5rem;
    }
    
    .founder-video-section {
        margin: 2rem 0;
    }
    
    .video-intro h3 {
        font-size: 1.5rem;
    }
    
    .story-highlights {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 2rem 0;
    }
    
    .highlight-card {
        padding: 1.5rem 1rem;
    }
    
    .highlight-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .mission-statement {
        padding: 1.5rem;
        margin: 2rem 0;
    }
    
    .mission-content h3 {
        font-size: 1.5rem;
    }
    
    .founder-quote {
        padding: 2rem 1.5rem;
    }
    
    .founder-quote p {
        font-size: 1.1rem;
    }
    
    .success-metrics {
        margin: 2rem 0;
    }
    
    .success-metrics h3 {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-item {
        padding: 2rem 1rem;
    }
    
    .stat-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .founder-cta {
        padding: 1.5rem;
        margin: 2rem 0;
    }
    
    .founder-cta h3 {
        font-size: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 250px;
    }
    
    /* Ajuste para botões outline em mobile */
    .btn-outline-dark {
        border-width: 5px;
        font-weight: 800;
        background-color: rgba(212, 130, 42, 0.12);
        color: #d4822a;
        border-color: #d4822a;
        box-shadow: 0 0 0 2px rgba(212, 130, 42, 0.2);
    }
}

@media (max-width: 600px) {
    .testimonial-card {
        padding: 1.5rem 1rem;
    }
}