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

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #000;
    color: #fff;
    overflow-x: hidden;
}

/* Navigation */
nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: auto;
    max-width: 1200px;
}

.nav-container {
    background: rgba(57, 0, 191, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

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

.logo img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #ff5722;
}

.nav-btn {
    background: #db4200;
    padding: 0.6rem 1.5rem;
    border-radius: 21px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 0.7px 0.7px -0.625px rgba(0,0,0,0.15),
                0 1.8px 1.8px -1.25px rgba(0,0,0,0.14);
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(219, 66, 0, 0.3);
}

/* Mobile Navigation */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Logistics Section */
.logistics-section{
    position: relative;
    overflow: hidden;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding-left: calc(50vw - 50%);
    padding-right: calc(50vw - 50%);
    padding-bottom: 0%;
}

.logistics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url('./logistics-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.2;
    z-index: 0;
}

.logistics-section > * {
    position: relative;
    z-index: 1;
}

/* Hero Section */
.hero {
    min-height: 100vh; /* Ensure it's at least the full viewport height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 10rem 2rem 4rem;
    position: relative; /* Ensure positioning context for absolute children */
    overflow: hidden; /* Ensure particles stay within the hero area */
}

/* Floating Dust Particles Container */
.dust-particles {
    /* Use absolute positioning to fill the parent .hero section */
    position: absolute;
    inset: 0; /* Equivalente a top: 0; right: 0; bottom: 0; left: 0; */
    width: 100%; /* Garante que 100% seja usado */
    height: 100%; /* Garante que 100% seja usado */
    /* Ensure it's positioned relative to the nearest positioned ancestor (.hero) */
    /* Remove any potential default margins/padding that might affect size */
    margin: 0;
    padding: 0;
    /* Ensure it doesn't interfere with clicks on content underneath */
    pointer-events: none;
    /* Place behind other content but above background effects */
    z-index: 1;
}

.dust-particle {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.7); /* Semi-transparent white */
    border-radius: 50%;
    animation: floatUp linear infinite;
    /* Make particles more visible */
    min-width: 2px; /* Minimum size */
    min-height: 2px; /* Minimum size */
}

/* Animation for floating upwards */
@keyframes floatUp {
    0% {
        /* Começa na posição inicial (top: 100%) sem deslocamento extra */
        transform: translateY(105vh);
    }
    100% {
        /* Move 110% acima do topo (o que é top: 0 do container) */
        transform: translateY(-5vh); 
    }
}

/* Light effects */
.light-left, .light-right {
    position: absolute;
    width: 800px;
    height: 600px;
    opacity: 0;
    animation: fadeInSlide 2s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards;
    pointer-events: none;
    z-index: 0;
}

.light-left {
    bottom: 0;
    left: 0;
    background: radial-gradient(ellipse at center, rgba(237, 87, 45, 0.4) 0%, rgba(237, 87, 45, 0.2) 30%, transparent 70%);
    filter: blur(80px);
    animation-name: fadeInSlideLeft;
    border-radius: 50%;
}

.light-right {
    top: 0;
    right: 0;
    background: radial-gradient(ellipse at center, rgba(237, 87, 45, 0.4) 0%, rgba(237, 87, 45, 0.2) 30%, transparent 70%);
    filter: blur(80px);
    animation-name: fadeInSlideRight;
    border-radius: 50%;
}

/* Sections */
section {
    padding: 3rem 2rem;
    max-width: 100vw;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    opacity: 0;
}

.section-header.visible {
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.badge {
    display: inline-block;
    background: rgb(13, 13, 13);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.5rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 4.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero h1 {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    opacity: 0;
    animation: fadeInUp 2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
    z-index: 2; /* Ensure text is above particles */
}

.hero p {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    opacity: 0;
    animation: fadeInUp 2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
    max-width: 1400px;
    white-space: nowrap;
    z-index: 2; /* Ensure text is above particles */
}

.cta-button {
    background: #ed562d;
    color: white;
    padding: 1rem 3rem;
    border-radius: 21px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    font-weight: 600;
    box-shadow: 0 0.7px 0.7px -0.625px rgba(0,0,0,0.15),
                0 1.8px 1.8px -1.25px rgba(0,0,0,0.14),
                0 30px 30px -3.75px rgba(0,0,0,0.05);
    opacity: 0;
    animation: fadeInUp 2s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
    z-index: 2; /* Ensure button is above particles */
}

.cta-button:hover {
    background: #ff6f3d;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(237, 86, 45, 0.4);
}

.subtitle {
    font-size: 1.3rem;
    opacity: 0.8;
}

.subtitle.orange {
    color: #ff9800;
    font-size: 1.5rem;
}

/* Grid Layouts */
.benefits-grid,
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    opacity: 0;
}

.benefits-grid.visible,
.process-grid.visible {
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.card {
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    opacity: 0;
    justify-content: center;
}

.card.visible {
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff5722, #ff9800);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(255, 87, 34, 0.2);
}

.card-icon {
    width: 100%;
    height: 48px;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon svg {
    width: 28px;
    height: 28px;
    fill: white;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.card p {
    line-height: 1.6;
    opacity: 0.9;
}

.text-intro {
    align-content: center;
    font-size: 2.3rem;
    line-height: 1.8;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 5px;
    padding-right: 5px;
}

@media (max-width: 768px) {
    .text-intro {
        font-size: 1.8rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

@media (max-width: 480px) {
    .text-intro {
        font-size: 1.5rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* Pricing Section */
#pricing-section {
    background-position: top left;
    background-image: url('./pricing-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding-top: 0%;
}

#pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 0;
}

#pricing-section > * {
    position: relative;
    z-index: 1;
}

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

.pricing-card {
    background: #1a1a1a;
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid #ff5722;
    transition: all 0.3s;
    position: relative;
    opacity: 0;
    cursor: pointer;
}

.pricing-card.visible {
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255, 87, 34, 0.3);
}

.price {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.price-period {
    font-size: 1.2rem;
    opacity: 0.7;
}

.pricing-feature {
    color: #ff9800;
    margin: 1.5rem 0;
    font-size: 1.1rem;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid #ff9800;
    opacity: 0;
}

.testimonial-card.visible {
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
}

/* Contact Form */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    opacity: 0;
}

.contact-info.visible {
    animation: fadeInSlideLeft 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.contact-form {
    opacity: 0;
}

.contact-form.visible {
    animation: fadeInSlideRight 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.form-group label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.form-group input,
.form-group textarea {
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
    color: white;
    font-size: 1rem;
    font-family: inherit;
}

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

.submit-btn {
    background: #f73f23;
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    font-weight: 600;
    width: 100%;
}

.submit-btn:hover {
    background: #ff6f3d;
    transform: translateY(-2px);
}

/* Footer */
footer {
    background: #000;
    padding: 4rem 2rem 2rem;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
}

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

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-link:hover {
    background: #ff5722;
    transform: translateY(-2px);
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: white;
}

/* Copy email button */
.copy-email {
    cursor: pointer;
    transition: all 0.3s;
    display: inline-block;
}

.copy-email:hover {
    color: #ff9800;
}

.copy-tooltip {
    position: absolute;
    background: #333;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.copy-tooltip.show {
    opacity: 1;
}

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

@keyframes fadeInSlideLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 0.55;
        transform: translateX(0);
    }
}

@keyframes fadeInSlideRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 0.55;
        transform: translateX(0);
    }
}

/* Testimonials Title Responsive */
.testimonials-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    white-space: normal; /* Allow text to wrap */
}

/* Responsive */
@media (max-width: 1400px) {
    .hero p {
        white-space: normal;
    }
}

@media (max-width: 1200px) {
    h2 {
        font-size: 3.7rem;
    }
    
    .hero h1 {
        font-size: 4rem;
    }
    
    .hero p {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    h2 {
        font-size: 3.2rem;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .hero p {
        font-size: 2rem;
    }
    
    .logistics-section p {
        font-size: 1.8rem;
    }
    
    /* Responsive testimonials title */
    .testimonials-title {
        font-size: 2.3rem;
    }
}

@media (max-width: 768px) {
    nav {
        width: 90%;
    }

    .nav-container {
        flex-wrap: wrap;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(57, 0, 191, 0.9);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 1rem;
        border-radius: 8px;
        margin-top: 1rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-container {
        position: relative;
    }

    .hero {
        padding: 8rem 1rem 2rem;
    }

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

    .hero p {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 2rem;
    }
    
    .logistics-section p {
        font-size: 1.4rem;
        line-height: 1.5;
    }
    
    /* Responsive testimonials title */
    .testimonials-title {
        font-size: 2.3rem;
    }

    .contact-container,
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid,
    .process-grid,
    .pricing-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .light-left, .light-right {
        width: 300px;
        height: 300px;
    }
    
    section {
        padding: 3rem 1rem;
    }
    
    .card, .pricing-card {
        padding: 1.5rem;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 7rem 1rem 2rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .logistics-section p {
        font-size: 1.2rem;
    }
    
    .cta-button, .nav-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .price {
        font-size: 2.5rem;
    }
    
    .nav-container {
        padding: 0.8rem 1rem;
    }
    
    /* Responsive testimonials title */
    .testimonials-title {
        font-size: 1.4rem;
    }
}

/* Efeito de partículas dust nos botões de preço */
.pricing-card {
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    border: 2px solid transparent;
    border-radius: 20px;
    transition: all 0.3s ease;
    z-index: 1;
}

.pricing-card:hover::before {
    border-color: #ff9800;
    box-shadow: 0 0 20px rgba(255, 152, 0, 0.4);
}

.pricing-card-dust {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.pricing-dust-particle {
    position: absolute;
    background-color: rgba(255, 152, 0, 0.6);
    border-radius: 50%;
    animation: dustFloat linear forwards;
    pointer-events: none;
}

@keyframes dustFloat {
    0% {
        transform: translate(0, 0) scale(0);
        opacity: 1;
    }
    100% {
        transform: translate(var(--tx), var(--ty)) scale(1);
        opacity: 0;
    }
}

/* Efeito de highlight na borda */
.pricing-card:hover {
    border-color: #ff9800 !important;
    box-shadow: 0 0 30px rgba(255, 152, 0, 0.3) !important;
    transform: translateY(-10px) scale(1.02) !important;
}