/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2family=Red+Hat+Display:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root {
    /* Color Palette - Based on HARB Logo */
    --primary-color: #06112F;
    --primary-dark: #030919;
    --primary-light: #0a1a45;
    --secondary-color: #06112F;
    --accent-color: #E8F1F5;
    --text-dark: #2C3E50;
    --text-light: #5A6C7D;
    --white: #FFFFFF;
    --light-bg: #F8FAFB;
    --border-color: #E0E6EA;

    /* Typography */
    --font-primary: 'Red Hat Display', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
}


/* O resto do seu CSS */
body {
    /* ... */
}

a {
    text-decoration: none;
}

html {
    scroll-behavior: smooth;
    height: 100%;
    width: 100%;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: #F0F0F0;
}

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

/* Header and Navigation */
.header {
    background: #F0F0F0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* .navbar {
    padding: 0.1rem 0;
} */

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo img {
    height: 35px;
    width: auto;
    background: transparent;
}

.logo-text {
    font-size: 0.45rem;
    font-weight: 600;
    color: #06112F;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    line-height: 1.2;
    max-width: 150px;
    white-space: nowrap;
}

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

.nav-menu li a {
    text-decoration: none;
    color: black;
    font-weight: 400;
    font-size: 0.7rem;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-menu li a:hover {
    color: #06112F;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 1.5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #06112F;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 18px 50px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
    cursor: pointer;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.btn-primary {
    background: linear-gradient(to left, #4960a2, #051133);
    color: var(--white);
}

.btn-primary:hover {
    background: linear-gradient(to left, #06112F, #030919);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(6, 17, 47, 0.4);
}

.btn-secondary {
    background: linear-gradient(to left, #0a1a45, #06112F);
    color: var(--white);
}

.btn-secondary:hover {
    background: linear-gradient(to left, #06112F, #030919);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(6, 17, 47, 0.4);
}

.cta-btn {
    background: linear-gradient(to left, #0a1a45, #06112F);
    color: #FFFFFF !important;
    padding: 12px 35px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    text-transform: uppercase;
}

.cta-btn:hover {
    background: linear-gradient(to left, #06112F, #030919);
    transform: translateY(-1px);
    box-shadow: 0 3px 12px rgba(6, 17, 47, 0.3);
}

/* WhatsApp Button */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 50px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #128C7E, #075E54);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp svg {
    flex-shrink: 0;
}

.hero-cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

/* Hero Section */
.hero {
    background: #F0F0F0;
    padding: 2rem 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    align-items: center;
    text-align: left;
    /* padding: 0 3rem 3rem 3rem; */
    margin-top: 0px;
}

.hero-product-img {
    max-width: 500px;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #06112F;
    margin-bottom: 0.5rem;
    /* line-height: 1.3; */
    /* letter-spacing: 0.1em; */
}

.hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    line-height: 1.9;
    color: black;
}

/* .hero-delivery {
    margin-top: 0.5rem;
    color: var(--text-dark);
    font-weight: 400;
    font-size: 0.9rem;
} */

.delivery-icon {
    display: inline-block;
    vertical-align: middle;
    margin-right: 0.25rem;
}

.hero-image {
    position: relative;
}

.hero-slider-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    margin-top: 14px;
}

.hero-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
    width: 100%;
    margin-top: 14px;
}

.hero-slider-mobile-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.hero-slider-mobile {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    scrollbar-width: none;
    width: 100%;
}

.hero-slider-mobile::-webkit-scrollbar {
    display: none;
}

.hero-slide {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.hero-slide img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 15px;
    object-fit: contain;
}

.hero-slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    pointer-events: none;
}

.hero-slider-prev,
.hero-slider-next {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slider-prev:hover,
.hero-slider-next:hover {
    background: #06112F;
    color: var(--white);
    transform: scale(1.1);
}

.hero-image-mobile {
    display: none;
}

/* Trust Bar */
.trust-bar {
    background: #06112F;
    padding: 1.5rem 0;
    margin-top: 3rem;
    margin-bottom: 0;
    width: 100%;
}

.trust-bar-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 3rem;
}

.trust-seal {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-seal svg {
    color: white;
    filter: drop-shadow(0 0 10px rgba(37, 211, 102, 0.5));
}

.trust-items {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    flex: 1;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
}

.trust-item svg {
    color: white;
    flex-shrink: 0;
    text-align: center;
}

.trust-divider {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
}

/* Benefits Section */
.benefits {
    padding: 0 0 3rem 0;
    margin-top: 0;
    background: #BFD4DC;
}

.benefits-badge {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    border: 2px solid #596da1;
    border-radius: 50px;
    color: #596da1;
    font-weight: 700;
    font-size: 1rem;
    margin: 3rem auto 1.5rem;
    text-align: center;
    width: fit-content;
    max-width: 90%;
}

.benefits .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.benefits .section-title {
    font-size: 1.6rem;
    font-weight: 500;
    color: black;
    line-height: 1.7rem;
}

.section-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: black;
    margin-bottom: 0.75rem;
}

.section-subtitle {
    text-align: center;
    font-size: 0.5 rem;
    font-weight: 300;
    color: #06112F;
    margin-bottom: 0.75rem;
}

.section-description {
    text-align: center;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.benefits .section-description {
    font-size: 1.2rem;
    color: black;
    padding: 0.9rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 2fr);
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.benefit-card {
    text-align: center;
    padding: 0;
    background: transparent;
    border-radius: 8px;
    transition: all 0.3s ease;
}

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

.benefit-card img {
    width: 100%;
    max-width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 0.75rem;
    border: none;
    outline: none;
    /* padding: 0.95rem; */
}

.benefit-card h3 {
    font-size: 1.28rem;
    font-weight: 400;
    color: #06112F;
    line-height: 1.4;
    padding: 0rem 0.8rem 0.8rem 0.8rem;
}

.cta-center {
    text-align: center;
    margin-top: 2rem;
}

/* Pricing Plans Section */
.pricing-plans {
    background: linear-gradient(135deg, #06112F 0%, #0a1a4a 100%);
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.pricing-plans::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.pricing-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 0.75rem 0;
}

.pricing-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-weight: 400;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;

}

.plan-card {
    background: #FFFFFF;
    border-radius: 15px;
    padding: 1.5rem 1.25rem;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
    height: 30rem;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.plan-featured {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%);
    border: 2px solid #FFD700;
    transform: scale(1.03);
    
}

.plan-featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.plan-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #FFD700;
    color: #06112F;
    padding: 0.4rem 1.2rem;
    border-radius: 15px;
    font-weight: 700;
    font-size: 0.75rem;
    box-shadow: 0 3px 8px rgba(255, 215, 0, 0.3);
}

.plan-icon {
    background: linear-gradient(135deg, #06112F 0%, #0a1a4a 100%);
    color: #FFFFFF;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
    box-shadow: 0 3px 10px rgba(6, 17, 47, 0.2);
}

.plan-featured .plan-icon {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #06112F;
}

.plan-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #06112F;
    margin: 0 0 0.4rem 0;
}

.plan-description {
    font-size: 0.9rem;
    color: var(--text-dark);
    margin: 0 0 1rem 0;
    line-height: 1.4;
    min-height: 40px;
}

.plan-savings {
    background: linear-gradient(135deg, #06112F 0%, #3855a3 100%);
    border-radius: 10px;
    padding: 0.75rem;
    margin-bottom: 1rem;
    box-shadow: 0 3px 8px rgba(16, 185, 129, 0.15);
}

.savings-label {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.8rem;
    margin-bottom: 0.2rem;
    font-weight: 500;
}

.savings-amount {
    display: block;
    color: #FFFFFF;
    font-size: 1.4rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.plan-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-align: left;
    list-style: none;
    padding: 0;
    margin: 0;
}

.plan-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
}

.plan-feature svg {
    color: #10B981;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.plan-feature span {
    font-size: 0.9rem;
    color: var(--text-dark);
    line-height: 1.4;
}

.pricing-cta {
    text-align: center;
    position: relative;
    z-index: 1;
}

.btn-large {
    font-size: 1rem;
    padding: 0.9rem 2rem;
}

/* Add-ons Section */
.addons-section {
    margin-top: 3rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.addons-header {
    text-align: center;
    margin-bottom: 2rem;
}

.addons-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 0.5rem 0;
}

.addons-subtitle {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    font-weight: 400;
}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.addon-card {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1.75rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.addon-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    background: #FFFFFF;
}

.addon-icon {
    background: linear-gradient(135deg, #06112F 0%, #0a1a4a 100%);
    color: #FFFFFF;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
    box-shadow: 0 4px 12px rgba(6, 17, 47, 0.25);
}

.addon-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: #06112F;
    margin: 0 0 0.75rem 0;
}

.addon-description {
    font-size: 0.9rem;
    color: var(--text-dark);
    line-height: 1.5;
    margin: 0;
}

/* Pricing Notice */
.pricing-notice {
    max-width: 700px;
    margin: 2.5rem auto 0 auto;
    padding: 1.25rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
}

.notice-icon {
    background: rgba(255, 255, 255, 0.95);
    color: #06112F;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.notice-text {
    color: #FFFFFF;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
    text-align: left;
}

.notice-text strong {
    font-weight: 700;
    color: #FFFFFF;
}

/* Smart Investment Section */
.smart-investment {
    background: var(--white);
    padding: 3rem 0;
}

.investment-header {
    text-align: center;
    margin-bottom: 3rem;
}

.lock-icon {
    color: #FFFFFF;
    margin-bottom: 0.75rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
    background: #06112F;
    border: 2px solid #06112F;
    border-radius: 50%;
    padding: 0.75rem;
    width: 60px;
    height: 60px;
}

.investment-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #06112F;
    margin: 0;
}

.investment-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.investment-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    color: #06112F;
    margin-bottom: 1.5rem;
    text-align: center;
}

.problem-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.problem-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #FEF2F2;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.problem-item:hover {
    transform: translateX(3px);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.06);
}

.x-icon {
    color: #DC2626;
    flex-shrink: 0;
}

.problem-item span {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
}

.investment-solution {
    display: flex;
    flex-direction: column;
}

.solution-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.solution-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #ECFDF5 0%, #D1FAE5 100%);
    border: 2px solid #10B981;
    border-radius: 10px;
    padding: 0.75rem;
    box-shadow: 0 3px 8px rgba(16, 185, 129, 0.08);
    transition: all 0.3s ease;
}

.solution-card:hover {
    transform: translateX(-3px);
    box-shadow: 0 6px 15px rgba(16, 185, 129, 0.15);
}

.check-icon {
    color: #10B981;
    flex-shrink: 0;
}

.solution-text {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.5;
    margin: 0;
    font-weight: 500;
}

.solution-text strong {
    color: #059669;
    font-weight: 700;
}

/* Product Gallery */
/* Gallery Title Section */
.gallery-title-section {
    background: #F0F0F0;
    padding: 2rem 0 1rem 0;
    text-align: center;

}

.gallery-title-section .section-title {
    margin-bottom: 0;
}

.product-gallery {
    padding: 1rem 0 2rem 0;
    background: #F0F0F0;
}

.gallery-image {
    position: relative;
}

.gallery-slider-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.gallery-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
    width: 100%;
}

.gallery-slider-mobile-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.gallery-slider-mobile {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    scrollbar-width: none;
    width: 100%;
}

.gallery-slider-mobile::-webkit-scrollbar {
    display: none;
}

.gallery-slide {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.gallery-slide img {
    width: 100%;
    max-width: 780px;
    height: auto;
    border-radius: 20px;
    object-fit: contain;
}

.gallery-slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    pointer-events: none;
}

.gallery-slider-prev,
.gallery-slider-next {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-slider-prev:hover,
.gallery-slider-next:hover {
    background: #2C3E50;
    color: var(--white);
    transform: scale(1.1);
}

.gallery-image-mobile {
    display: none;
}

/* Smart Rental Section */
.smart-rental {
    padding: 3rem 0;
    background: #F0F0F0;
}

.smart-rental .section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.rocket-icon {
    color: #FFFFFF;
    flex-shrink: 0;
    background: #06112F;
    border: 2px solid #06112F;
    border-radius: 50%;
    padding: 0.4rem;
}

.smart-rental-description {
    text-align: center;
    font-size: 1rem;
    color: #06112F;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto 2rem;
}

.smart-rental-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-item {
    background: #06112F;
    padding: 1.5rem 1.25rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 3px 12px rgba(6, 17, 47, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(6, 17, 47, 0.4);
}

.feature-icon {
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.feature-item p {
    font-size: 0.95rem;
    color: #FFFFFF;
    line-height: 1.5;
    margin: 0;
}

/* Delivery Section */
.delivery-section {
    padding: 3rem 0;
    background: #F0F0F0;
}

.delivery-section .section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-align: center;
    margin-bottom: 3rem;
}

.delivery-icon {
    color: #FFFFFF;
    flex-shrink: 0;
    background: #06112F;
    border: 2px solid #06112F;
    border-radius: 50%;
    padding: 0.5rem;
}

.delivery-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.delivery-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #06112F;
    padding: 1.25rem;
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(6, 17, 47, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.delivery-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(6, 17, 47, 0.4);
}

.check-icon-blue {
    color: #FFFFFF;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.delivery-item p {
    font-size: 0.95rem;
    color: #FFFFFF;
    line-height: 1.5;
    margin: 0;
}

/* Form Section */
.form-section {
    /* padding: 3rem 0; */
    background: #F0F0F0;
}

.logo-container-form {
    text-align: center;
    margin: 0;
}

.section-subtitle-form {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-description-form {
    text-align: center;
    font-size: 1.2rem;
    color: #06112F;
    font-weight: 350;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form {
    max-width: 800px;
    margin: 3rem auto 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 800;
    color: #06112F;
    margin-bottom: 0.5rem;
}

textarea {
    font-weight: 900;
    /* texto digitado */
    color: #06112F;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

/* Placeholder */
textarea::placeholder {
    font-weight: 1.rem;
}


.form-group input {
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #06112F;
}

.checkbox-group {
    margin: 1.5rem 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-label span {
    font-size: 0.9rem;
    color: var(--text-light);
}

.company-info {
    text-align: center;
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: rgba(44, 62, 80, 0.1);
    border-radius: 12px;
    border-left: 4px solid #2C3E50;
}

.company-info p {
    margin: 0.5rem 0;
    font-size: 1.05rem;
    color: var(--text-dark);
    font-weight: 500;
}

.contact-form button[type="submit"] {
    width: 100%;
    margin-top: 1rem;
}

/* Kits Section */
.kits {
    padding: 3rem 0;
    background: #F0F0F0;
}

.kits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.kit-card {
    text-align: center;
    padding: 1rem;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.kit-card:hover {
    transform: translateY(-5px);
}

.kit-card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}


/* Revenue Section */
.revenue {
    padding: var(--spacing-xl) 0;
    background: #F0F0F0;
}

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

.revenue-card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.revenue-card:hover img {
    transform: scale(1.05);
}

/* Simulation CTA Section */
.simulation-cta {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, #06112F 0%, #0a1a45 100%);
    position: relative;
    overflow: hidden;
}

.simulation-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(6, 17, 47, 0.1) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.3;
    }
}

.simulation-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.simulation-icon {
    margin: 0 auto 2rem;
    width: 100px;
    height: 100px;
    background: #06112F;
    border: 2px solid #06112F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(6, 17, 47, 0.3);
}

.simulation-icon svg {
    color: #FFFFFF;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.simulation-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.simulation-description {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1rem;
    font-weight: 500;
}

.simulation-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.btn-simulation {
    display: inline-block;
    padding: 18px 48px;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 20px rgba(6, 17, 47, 0.4);
    transition: all 0.3s ease;
}

.btn-simulation:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(6, 17, 47, 0.6);
}

/* Process Section */
.process {
    padding: 3rem 0;
    background: #F0F0F0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.process-step {
    background: transparent;
    padding: 0;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.process-step:hover {
    transform: translateY(-3px);
}

.step-icon {
    background: #06112F;
    border: 2px solid #06112F;
    border-radius: 15px;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    box-shadow: 0 3px 10px rgba(6, 17, 47, 0.25);
    transition: all 0.3s ease;
}

.process-step:hover .step-icon {
    box-shadow: 0 6px 18px rgba(6, 17, 47, 0.4);
}

.step-icon svg {
    color: #FFFFFF;
    width: 48px;
    height: 48px;
}

.process-step h3 {
    font-size: 1rem;
    color: #06112F;
    margin-bottom: 0.4rem;
    font-weight: 600;
    line-height: 1.3;
}

.process-step p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.process-scroll-indicator {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 1rem;
    opacity: 0.4;
}

.process-scroll-indicator svg {
    color: #06112F;
    animation: bounce 2s infinite;
}

.testimonials-scroll-indicator {
    text-align: center;
    margin-top: 3rem;
    opacity: 0.4;
}

.testimonials-scroll-indicator svg {
    color: #06112F;
    animation: bounce 2s infinite;
}

.form-scroll-indicator {
    text-align: center;
    margin-top: 3rem;
    opacity: 0.4;
}

.form-scroll-indicator svg {
    color: #06112F;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Testimonials Section */
.testimonials {
    padding: var(--spacing-xl) 0;
    background: #F0F0F0;
}

.testimonials-slider-wrapper {
    position: relative;
    overflow: hidden;
    margin-top: 3rem;
}

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

.testimonial-slide {
    min-width: 100%;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 1rem;
}



.testimonial-card {
    background: #FFFFFF;
    border-radius: 20px;
    /* padding: 2rem; */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    max-width: 600px;
    width: 100%;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

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

.stars {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-dark);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-author {
    font-size: 0.95rem;
    color: #06112F;
    font-weight: 600;
}

.testimonials-slider-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.testimonials-slider-prev,
.testimonials-slider-next {
    background: rgba(6, 17, 47, 0.1);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    color: #06112F;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonials-slider-prev:hover,
.testimonials-slider-next:hover {
    background: #06112F;
    color: white;
    transform: scale(1.1);
}

/* Footer */
.footer {
    background: #06112F;
    color: var(--white);
    padding: 3rem 0 2rem;
}

.footer-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.footer-logo img {
    height: 180px;
    width: auto;
    background: #06112F;
    padding: 1rem;
    border-radius: 10px;
}

.footer-text {
    text-align: center;
    margin-bottom: 2rem;
}

.footer-text p {
    margin-bottom: 0.5rem;
}

.footer-disclaimer {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-disclaimer p {
    font-size: 0.8rem;
    opacity: 0.8;
    line-height: 1.6;
}

/* Animação de tremor para botões */
@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translateX(-5px);
    }

    20%,
    40%,
    60%,
    80% {
        transform: translateX(5px);
    }
}

.btn-shake {
    animation: shake 1.5s ease-in-out;
}

/* Responsive Design */


/* Tablet - 768px to 1024px (hamburger menu) */
@media (min-width: 768px) and (max-width: 1180px) {

    /* Aumentar logo e texto em tablets */
    .logo img {
        height: 90px;
    }

    .logo-text {
        font-size: 1.1rem;
        max-width: 200px;
        white-space: normal;
    }

    /* Grid de 2 colunas em tablet */
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Aumentar imagens dos benefits em tablet */
    .benefit-card img {
        max-width: 100%;
        height: 280px;
    }

    /* Pricing Plans responsivo - Tablet */
    .pricing-title {
        font-size: 2.2rem;
    }

    .pricing-subtitle {
        font-size: 1.1rem;
    }

    .plans-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 500px;
        margin: 0 auto 3rem auto;
    }

    .plan-featured {
        transform: scale(1);
    }

    .plan-featured:hover {
        transform: scale(1.02) translateY(-5px);
    }

    /* Smart Investment responsivo - Tablet */
    .investment-content {
        gap: 2.5rem;
    }

    .investment-title {
        font-size: 2.2rem;
    }

    /* Smart Rental responsivo - Tablet */
    .smart-rental .section-title {
        font-size: 2.2rem;
    }

    .smart-rental-features {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    /* Delivery Section responsivo - Tablet */
    .delivery-section .section-title {
        font-size: 2.2rem;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #F0F0F0;
        flex-direction: column;
        padding: 0.5rem;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-image {
        display: none;
    }

    .hero-image-mobile {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0;
        margin: 2rem 0;
        position: relative;
        width: 100%;
    }

    .hero-slider-mobile-wrapper {
        flex: 1;
        max-width: 100%;
        width: 100%;
    }

    .hero-slider-mobile {
        flex: 1;
        width: 100%;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .hero-slider-mobile::-webkit-scrollbar {
        display: none;
    }

    .hero-slider-mobile .hero-slide {
        flex: 0 0 100%;
        scroll-snap-align: start;
    }

    .hero-slider-mobile .hero-slide img {
        width: 100%;
        border-radius: 20px;
        cursor: grab;
        user-select: none;
    }

    .hero-slider-mobile .hero-slide img:active {
        cursor: grabbing;
    }

    /* Esconder botões em tablet */
    .hero-slider-mobile-prev,
    .hero-slider-mobile-next {
        display: none;
    }

    .hero-product-img {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-title {
        font-size: 2.2rem;
        letter-spacing: 0.1em;
    }

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

    .hero-cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }

    .btn-whatsapp {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        padding: 16px 40px;
        font-size: 0.75rem;
    }

    .trust-bar-content {
        justify-content: center;
    }

    .trust-seal svg {
        width: 64px;
        height: 64px;
    }

    .trust-items {
        display: none;
    }

    .section-title {
        font-size: 2rem;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .price-value {
        font-size: 2.5rem;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

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

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

    /* Esconder controles do slider de testemunhos em tablet - usar apenas swipe */
    .testimonials-slider-controls {
        display: none;
    }

    /* Testimonials slider responsivo - tablet com scroll nativo */
    .testimonials-slider-wrapper {
        overflow: hidden;
        position: relative;
        width: 100%;
    }

    .testimonials-slider {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        width: 100%;
        transition: none;
        transform: none !important;
    }

    .testimonials-slider::-webkit-scrollbar {
        display: none;
    }

    .testimonial-slide {
        width: 100%;
        min-width: 100%;
        max-width: 100%;
        flex-shrink: 0;
        scroll-snap-align: start;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0 1rem;
    }

    .testimonial-card {
        max-width: 600px;
        width: 100%;
        min-height: 280px;
        cursor: grab;
        user-select: none;
    }

    .testimonial-card:active {
        cursor: grabbing;
    }
}

/* Mobile - less than 767px (no navigation links, only logo and text) */
@media (max-width: 767px) {

    /* Remover header fixo em mobile */
    .header {
        position: relative;
    }

    /* Mobile - logo e texto menores que tablet */
    .logo img {
        height: 60px;
    }

    .logo-text {
        font-size: 0.75rem;
        max-width: 180px;
        white-space: normal;
    }

    /* Aumentar ainda mais imagens dos benefits em mobile */
    .benefit-card img {
        max-width: 100%;
        height: 400px;
    }

    /* Pricing Plans responsivo - Mobile */
    .pricing-title {
        font-size: 1.8rem;
    }

    .pricing-subtitle {
        font-size: 1rem;
    }

    .plans-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .plan-card {
        padding: 2rem 1.5rem;
    }

    .plan-name {
        font-size: 1.5rem;
    }

    .plan-description {
        font-size: 1rem;
        min-height: auto;
    }

    .savings-amount {
        font-size: 1.7rem;
    }

    .btn-large {
        font-size: 1.1rem;
        padding: 0.9rem 2rem;
    }

    /* Add-ons responsivo - Mobile */
    .addons-section {
        margin-top: 2.5rem;
    }

    .addons-title {
        font-size: 1.3rem;
    }

    .addons-subtitle {
        font-size: 0.9rem;
    }

    .addons-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .addon-card {
        padding: 1.5rem 1.25rem;
    }

    .addon-name {
        font-size: 1.1rem;
    }

    .addon-description {
        font-size: 0.85rem;
    }

    /* Pricing Notice responsivo - Mobile */
    .pricing-notice {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem 1rem;
        margin: 2rem auto 0 auto;
    }

    .notice-text {
        text-align: center;
        font-size: 0.9rem;
    }

    /* Smart Investment responsivo - Mobile */
    .investment-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .investment-title {
        font-size: 1.8rem;
    }

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

    .solution-card {
        padding: 1rem;
    }

    .solution-text {
        font-size: 1rem;
    }

    /* Smart Rental responsivo - Mobile */
    .smart-rental .section-title {
        font-size: 1.8rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .smart-rental-description {
        font-size: 1.1rem;
    }

    .smart-rental-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Delivery Section responsivo - Mobile */
    .delivery-section .section-title {
        font-size: 1.8rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .delivery-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .delivery-item {
        padding: 1.5rem;
    }

    .delivery-item p {
        font-size: 1rem;
    }

    /* Diminuir espaçamento do header */
    .navbar {
        padding: 0.5rem 0;
    }

    /* Diminuir espaçamento entre header e hero */
    .hero {
        padding-top: 1rem;
    }

    /* Esconder menu de navegação em mobile */
    .menu-toggle {
        display: none;
    }

    .nav-menu {
        display: none !important;
    }

    .nav-wrapper {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0;
    }

    .logo-container {
        gap: 0.8rem;
    }

    /* Esconder controles do slider de testemunhos em mobile - usar apenas swipe */
    .testimonials-slider-controls {
        display: none;
    }

    /* Testimonials slider responsivo - mobile com scroll nativo */
    .testimonials-slider-wrapper {
        overflow: hidden;
        position: relative;
        width: 100%;
    }

    .testimonials-slider {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        width: 100%;
        transition: none;
        transform: none !important;
    }

    .testimonials-slider::-webkit-scrollbar {
        display: none;
    }

    .testimonial-slide {
        width: 100%;
        min-width: 100%;
        max-width: 100%;
        flex-shrink: 0;
        scroll-snap-align: start;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0 0.5rem;
    }

    .testimonial-card {
        max-width: 600px;
        width: 100%;
        min-height: 100%;
        cursor: grab;
        user-select: none;
    }

    .testimonial-card:active {
        cursor: grabbing;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-image {
        display: none;
    }

    .hero-image-mobile {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0;
        margin: 2rem 0;
        position: relative;
        width: 100%;
    }

    .hero-slider-mobile-wrapper {
        flex: 1;
        max-width: 100%;
        width: 100%;
    }

    .hero-slider-mobile {
        flex: 1;
        width: 100%;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .hero-slider-mobile::-webkit-scrollbar {
        display: none;
    }

    .hero-slider-mobile .hero-slide {
        flex: 0 0 100%;
        scroll-snap-align: start;
    }

    .hero-slider-mobile .hero-slide img {
        width: 100%;
        border-radius: 20px;
        cursor: grab;
        user-select: none;
    }

    .hero-slider-mobile .hero-slide img:active {
        cursor: grabbing;
    }

    /* Esconder botões em mobile */
    .hero-slider-mobile-prev,
    .hero-slider-mobile-next {
        display: none;
    }

    .hero-product-img {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
        letter-spacing: 0.08em;
    }

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

    .section-title {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 0.86rem;
    }

    .btn {
        padding: 15px 30px;
        font-size: 1rem;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .price-value {
        font-size: 2rem;
    }

    .simulation-title {
        font-size: 1.6rem;
    }

    .simulation-description {
        font-size: 1.05rem;
    }

    .simulation-subtitle {
        font-size: 0.95rem;
    }

    .btn-simulation {
        padding: 15px 30px;
        font-size: 1rem;
    }

    .simulation-icon {
        width: 80px;
        height: 80px;
    }

    .simulation-icon svg {
        width: 60px;
        height: 60px;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .process-step {
        background: transparent;
        padding: 0;
        box-shadow: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .process-step:hover {
        transform: none;
        box-shadow: none;
    }

    .step-icon {
        background: #06112F;
        border: 2px solid #06112F;
        border-radius: 16px;
        width: 80px;
        height: 80px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0;
        box-shadow: 0 4px 12px rgba(6, 17, 47, 0.3);
    }

    .step-icon svg {
        width: 40px;
        height: 40px;
    }

    .process-step h3 {
        font-size: 0.95rem;
        text-align: center;
        margin: 0;
    }

    .process-step p {
        font-size: 0.85rem;
        text-align: center;
        margin: 0;
    }

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

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

    /* Pricing Plans responsivo - Mobile pequeno */
    .pricing-title {
        font-size: 1.5rem;
    }

    .pricing-subtitle {
        font-size: 0.95rem;
    }

    .plan-name {
        font-size: 1.3rem;
    }

    .plan-description {
        font-size: 0.95rem;
    }

    .plan-feature span {
        font-size: 0.95rem;
    }


    .savings-amount {
        font-size: 1.5rem;
    }

    /* Smart Investment responsivo - Mobile pequeno */
    .investment-title {
        font-size: 1.5rem;
    }

    .problem-item span {
        font-size: 1rem;
    }

    .solution-text {
        font-size: 1rem;
    }

    /* Gallery Mobile */
    .gallery-image {
        display: none;
    }

    .gallery-image-mobile {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0;
        margin: 0;
        position: relative;
        width: 100%;
    }

    .gallery-slider-mobile-wrapper {
        flex: 1;
        max-width: 100%;
        width: 100%;
    }

    .gallery-slider-mobile {
        flex: 1;
        width: 100%;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .gallery-slider-mobile::-webkit-scrollbar {
        display: none;
    }

    .gallery-slider-mobile .gallery-slide {
        flex: 0 0 100%;
        scroll-snap-align: start;
    }

    .gallery-slider-mobile .gallery-slide img {
        width: 100%;
        border-radius: 20px;
        cursor: grab;
        user-select: none;
    }

    .gallery-slider-mobile .gallery-slide img:active {
        cursor: grabbing;
    }

    /* Esconder botões em mobile/tablet */
    .gallery-slider-mobile-prev,
    .gallery-slider-mobile-next {
        display: none;
    }
}

/* Breakpoints intermediários para melhor responsividade do header */

/* Mobile médio - 480px to 600px */
/* @media (max-width: 600px) {
    .logo img {
        height: 130px;
    }

    .logo-text {
        font-size: 1.5rem;
        max-width: 240px;
        white-space: normal;
    }
    .trust-bar-content {
        justify-content: center;
    }

    .trust-seal svg {
        width: 64px;
        height: 64px;
    }

    .trust-items {
        display: none;
    }
} */

/* Mobile pequeno - 400px to 480px */
@media (max-width: 480px) {
    .logo img {
        height: 150px;
    }

    .logo-text {
        font-size: 1.8rem;
        max-width: 200px;
        white-space: normal;
    }

    .hero-title {
        font-size: 1.99rem;
        line-height: 2.15rem;
    }

    .hero-subtitle {
        font-size: 1.32rem;
        padding: 0.5rem;
    }

    .btn {
        margin: auto;
        width: 95%;
        border-radius: 15px;
    }

    .btn-whatsapp {
        margin: auto;
    }

    .trust-bar-content {
        justify-content: center;
    }

    .trust-seal svg {
        width: 64px;
        height: 64px;
    }

    .trust-items {
        display: none;
    }

    section-description {
        font-size: 3rem;
    }

    #btn-benefits {
        margin: auto;
        width: 100%;
        border-radius: 40px;
    }

    #btn-whatsapp-form {
        margin: 10px;
        width: 93%;
        font-size: 0.83rem;
    }

    #btn-form {
        border-radius: 50px;
        width: 95%;
        margin: 10px;
    }

    .plans-grid {
        padding: 10px;
    }

    .form-section {
        margin: 10px;
    }

    .benefits-grid {
        margin: 15px;
    }

}

/* Mobile muito pequeno - menos de 400px */
@media (max-width: 400px) {
    .logo img {
        height: 90px;
    }

    .logo-text {
        font-size: 1rem;
        max-width: 170px;
        white-space: normal;
    }

    .trust-bar-content {
        justify-content: center;
    }

    .trust-seal svg {
        width: 64px;
        height: 64px;
    }

    .trust-items {
        display: none;
    }

    .hero-title {
        padding: 0.8rem;
    }
}

/* Mobile extra pequeno - menos de 350px */
@media (max-width: 350px) {
    .logo img {
        height: 75px;
    }

    .logo-text {
        font-size: 0.85rem;
        max-width: 140px;
        white-space: normal;
    }
}

/* Desktop - Aumentar elementos do header e largura da página */
@media (min-width: 1025px) {

    /* Aumentar largura do container */
    .container {
        max-width: 1300px;
        padding: 0 40px;
    }

    /* Logo mantém progressão do tablet (90px) para desktop (95px) */
    .logo img {
        height: 95px;
    }

    /* Texto do logo mantém progressão do tablet (1.1rem) */
    .logo-text {
        font-size: 1.3rem;
        max-width: 320px;
    }

    /* Aumentar espaçamento e tamanho da navegação */
    .nav-menu {
        gap: 2rem;
    }

    .nav-menu li a {
        font-size: 1rem;
    }

    /* Aumentar botão CTA */
    .cta-btn {
        padding: 14px 40px;
        font-size: 1rem;
    }

    /* Aumentar padding do navbar */
    .navbar {
        padding: 0.5rem 0;
    }

    /* Alinhar hero content ao topo */
    .hero-content {
        align-items: flex-start;
    }

    /* Fazer o hero-text usar flexbox para distribuição vertical */
    .hero-text {
        display: flex;
        flex-direction: column;
        height: 100%;
        justify-content: space-between;
    }

    /* Aumentar tamanhos de títulos e textos das seções */
    .hero-title {
        font-size: 2rem;
        margin-bottom: 0;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        margin-top: 1;
        margin-bottom: 1;
    }

    .section-title {
        font-size: 2.6rem;
    }

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

    /* Aumentar botões gerais */
    .btn {
        padding: 18px 50px;
        font-size: 1.15rem;
    }

    /* Testemunhos - mostrar 3 por vez no desktop */
    .testimonials-slider {
        gap: 0;
    }

    .testimonial-slide {
        min-width: 33.333%;
        max-width: 33.333%;
        padding: 0 0.75rem;
        align-items: stretch;
    }

    .testimonial-card {
        max-width: 100%;
        height: 100%;
        min-height: 350px;
    }

    /* Gallery slider - 3 imagens por vez no desktop */
    .gallery-slide {
        width: calc(100% / 3);
        min-width: calc(100% / 3);
        max-width: calc(100% / 3);
        padding: 0 10px;
    }

}

/* Desktop Grande - Aumentar ainda mais para telas muito grandes */
@media (min-width: 1201px) {

    /* Aumentar ainda mais a largura do container */
    .container {
        max-width: 1500px;
    }

    /* Aumentar ainda mais o logo (progressão: 90px tablet → 95px desktop → 110px desktop grande) */
    .logo img {
        height: 80px;
    }

    /* Aumentar ainda mais o texto do logo (progressão: 1.1rem tablet → 1.1rem desktop → 1.3rem desktop grande) */
    .logo-text {
        font-size: 1.1rem;
        max-width: 350px;
    }

    /* Aumentar ainda mais o espaçamento da navegação */
    .nav-menu {
        gap: 1.8rem;
    }

    /* Testemunhos - ajustar padding para desktop grande */
    .testimonial-slide {
        padding: 0 1rem;
    }

    .nav-menu li a {
        font-size: 1rem;
    }

    /* Aumentar ainda mais o botão CTA */
    .cta-btn {
        padding: 14px 46px;
        font-size: 1.13rem;
    }

    /* Aumentar ainda mais os títulos */
    .hero-title {
        font-size: 3rem;
        padding-top: 1rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;

    }

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

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

    /* Aumentar ainda mais os botões */
    .btn {
        padding: 15px 35px;
        font-size: 1.18rem;
    }
}