/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Utilitários */
.min-h-screen {
    min-height: 100vh;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.flex-1 {
    flex: 1;
}

.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.text-center {
    text-align: center;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.fixed {
    position: fixed;
}

.z-10 {
    z-index: 10;
}

.z-20 {
    z-index: 20;
}

.z-30 {
    z-index: 30;
}

.z-40 {
    z-index: 40;
}

.hidden {
    display: none;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }
}

/* Header */
.header {
    width: 100%;
    background: linear-gradient(to right, #fff, #9ca3af, #000);
    position: relative;
    min-height: 80px;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo-img {
    height: 3.5rem;
    width: auto;
    display: block;
    max-width: 100%;
}

.header-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Botões */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    white-space: nowrap;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    padding: 0.5rem 1.5rem;
}

.btn-phone {
    background-color: #dc2626;
    color: white;
}

.btn-phone:hover {
    background-color: #b91c1c;
}

.btn-whatsapp {
    background-color: #16a34a;
    color: white;
}

.btn-whatsapp:hover {
    background-color: #15803d;
}

.btn-hero-whatsapp {
    background-color: #22c55e;
    color: white;
    font-size: 1.125rem;
    padding: 1rem 2rem;
    border-radius: 9999px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.btn-hero-whatsapp:hover {
    background-color: #16a34a;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.btn-locations {
    background: linear-gradient(to right, #f7931e, #e8821a);
    color: white;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    font-size: 1.125rem;
    padding: 1rem 2rem;
}

.btn-locations:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.btn-cta-primary {
    background-color: #f7931e;
    color: white;
    font-size: 1.125rem;
    padding: 1rem 2rem;
    border: none;
}

.btn-cta-primary:hover {
    background-color: #e8821a;
}

.btn-cta-secondary {
    border: 2px solid white;
    color: white;
    background-color: transparent;
    font-size: 1.125rem;
    padding: 1rem 2rem;
}

.btn-cta-secondary:hover {
    background-color: white;
    color: #333;
}

.btn-mobile-primary {
    background-color: #dc2626;
    color: white;
    border: none;
    flex: 1;
}

.btn-mobile-primary:hover {
    background-color: #b91c1c;
}

.btn-mobile-secondary {
    background-color: #16a34a;
    color: white;
    border: none;
    flex: 1;
}

.btn-mobile-secondary:hover {
    background-color: #15803d;
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('public/images/delta-truck-new-hero.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 1rem 0;
    min-height: 350px;
    margin: 0;
}

.hero-content {
    text-align: center;
    color: white;
}

.hero-title {
    max-width: 64rem;
    margin: 0 auto 1.5rem;
}

.title-main {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.title-sub {
    font-size: 1.875rem;
    font-weight: bold;
}

@media (min-width: 768px) {
    .title-main {
        font-size: 4rem;
    }
    .title-sub {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .title-main {
        font-size: 6rem;
    }
    .title-sub {
        font-size: 5rem;
    }
}

.hero-image-container {
    position: relative;
    max-width: 64rem;
    margin: 0 auto;
    margin-bottom: 0;
}

.hero-image-wrapper {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .hero-image-wrapper {
        padding: 0 8rem;
    }
}

.hero-orange-bg {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    z-index: 0;
}

.hero-orange-bg::before {
    content: '';
    width: 100%;
    height: 60%;
    background-color: rgba(247, 147, 30, 1);
    border-radius: 1.5rem 1.5rem 0 0;
}

.hero-image {
    width: 100%;
    min-width: 320px;
    max-width: 64rem;
    height: auto;
    position: relative;
    z-index: 10;
}

.hero-description {
    text-align: center;
    color: white;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.hero-subtitle {
    color: #f7931e;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.875rem;
    }
}

.hero-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    max-width: 48rem;
    margin: 0 auto 2rem;
}

/* Section Headers */
.section-header {
    margin-bottom: 4rem;
    text-align: center;
}

@media (min-width: 768px) {
    .section-header {
        margin-bottom: 6rem;
    }
}

.section-title-wrapper {
    display: inline-block;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.25rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 1rem;
    position: relative;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 4rem;
    }
}

.title-underline {
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 6rem;
    height: 0.25rem;
    background: linear-gradient(to right, #f7931e, #e8821a);
    border-radius: 9999px;
}

.section-subtitle {
    color: #b3b3b3;
    font-size: 1.25rem;
    max-width: 42rem;
    margin: 0 auto;
}

/* How It Works Section */
.how-it-works {
    background: linear-gradient(135deg, rgba(247, 147, 30, 0.05), rgba(247, 147, 30, 0.1), rgba(247, 147, 30, 0.05));
    position: relative;
    overflow: hidden;
    padding: 1rem 0;
    margin: 0;
    margin-top: -1rem;
}

@media (min-width: 768px) {
    .how-it-works {
        padding: 2rem 0;
    }
}

.steps-grid {
    display: grid;
    gap: 2rem;
    position: relative;
    z-index: 20;
}

@media (min-width: 768px) {
    .steps-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.step-card {
    position: relative;
    margin-top: 0;
}

.step-card-offset {
    margin-top: -2rem;
}

.step-card-offset-up {
    margin-top: 2rem;
}

.step-number {
    position: absolute;
    top: -1rem;
    left: -1rem;
    z-index: 20;
    height: 2rem;
    width: 2rem;
    border-radius: 9999px;
    background: linear-gradient(to right, #f7931e, #e8821a);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: bold;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.step-content {
    position: relative;
    background-color: white;
    border-radius: 1rem;
    border: 2px solid rgba(179, 179, 179, 0.2);
    padding: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
}

.step-content:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(-5px);
}

.step-glow {
    position: absolute;
    inset: 0;
    border-radius: 1rem;
    background: linear-gradient(to right, rgba(247, 147, 30, 0.05), rgba(232, 130, 26, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.step-content:hover .step-glow {
    opacity: 1;
}

.step-icon {
    height: 4rem;
    width: 4rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, rgba(247, 147, 30, 0.1), rgba(247, 147, 30, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.step-content:hover .step-icon {
    transform: scale(1.1);
}

.step-icon i {
    font-size: 1.75rem;
    color: #f7931e;
}

.step-title {
    font-weight: bold;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: #333;
    transition: color 0.3s ease;
}

.step-content:hover .step-title {
    color: #f7931e;
}

.step-description {
    font-size: 0.875rem;
    color: #b3b3b3;
    line-height: 1.6;
}

.step-decoration {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    height: 0.75rem;
    width: 0.75rem;
    border-radius: 9999px;
    background: linear-gradient(to right, #f7931e, #e8821a);
    opacity: 0.2;
    transition: opacity 0.3s ease;
}

.step-content:hover .step-decoration {
    opacity: 0.6;
}

/* Locations Section */
.locations {
    background-color: white;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(179, 179, 179, 0.2);
    padding: 1rem 0;
    margin: 0;
}

@media (min-width: 768px) {
    .locations {
        padding: 2rem 0;
    }
}

.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 9999px;
    background-color: rgba(247, 147, 30, 0.1);
    border: 1px solid rgba(247, 147, 30, 0.2);
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.location-badge i {
    color: #f7931e;
    font-size: 1rem;
}

.location-badge span {
    color: #f7931e;
    font-weight: 500;
}

.location-cta {
    text-align: center;
}

.location-cta-content {
    background-color: #333;
    border-radius: 1.5rem;
    padding: 2rem;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

@media (min-width: 768px) {
    .location-cta-content {
        padding: 2rem;
    }
}

.location-cta-text h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .location-cta-text h3 {
        font-size: 1.875rem;
    }
}

.location-cta-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.location-highlights {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    font-size: 0.875rem;
}

.location-highlight {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.highlight-dot {
    width: 0.5rem;
    height: 0.5rem;
    background-color: white;
    border-radius: 9999px;
}

/* Benefits Section */
.benefits {
    background-color: #f9fafb;
    position: relative;
    overflow: hidden;
    padding: 1rem 0;
    margin: 0;
}

@media (min-width: 768px) {
    .benefits {
        padding: 2rem 0;
    }
}

.benefits-grid {
    display: grid;
    gap: 2rem;
    position: relative;
    z-index: 10;
}

@media (min-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.benefit-card {
    position: relative;
    margin-top: 0;
}

.benefit-card-offset {
    margin-top: -2rem;
}

.benefit-card-offset-up {
    margin-top: 2rem;
}

.benefit-number {
    position: absolute;
    top: -1rem;
    left: -1rem;
    z-index: 20;
    height: 2rem;
    width: 2rem;
    border-radius: 9999px;
    background: linear-gradient(to right, #f7931e, #e8821a);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: bold;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.benefit-content {
    position: relative;
    background-color: white;
    border-radius: 1rem;
    border: 2px solid rgba(179, 179, 179, 0.2);
    padding: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
}

.benefit-content:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(-5px);
}

.benefit-glow {
    position: absolute;
    inset: 0;
    border-radius: 1rem;
    background: linear-gradient(to right, rgba(247, 147, 30, 0.05), rgba(232, 130, 26, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-content:hover .benefit-glow {
    opacity: 1;
}

.benefit-icon {
    height: 4rem;
    width: 4rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, rgba(247, 147, 30, 0.1), rgba(247, 147, 30, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.benefit-content:hover .benefit-icon {
    transform: scale(1.1);
}

.benefit-icon i {
    font-size: 2rem;
    color: #f7931e;
}

.benefit-title {
    font-weight: bold;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: #333;
    transition: color 0.3s ease;
}

.benefit-content:hover .benefit-title {
    color: #f7931e;
}

.benefit-description {
    font-size: 0.875rem;
    color: #b3b3b3;
    line-height: 1.6;
}

.benefit-decoration {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    height: 0.75rem;
    width: 0.75rem;
    border-radius: 9999px;
    background: linear-gradient(to right, #f7931e, #e8821a);
    opacity: 0.2;
    transition: opacity 0.3s ease;
}

.benefit-content:hover .benefit-decoration {
    opacity: 0.6;
}

/* Sustainability Section */
.sustainability {
    background-color: #333;
    padding: 1rem 0;
    margin: 0;
}

@media (min-width: 768px) {
    .sustainability {
        padding: 2rem 0;
    }
}

.sustainability-content {
    max-width: 64rem;
    margin: 0 auto;
    text-align: center;
}

.sustainability-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 9999px;
    background-color: rgba(34, 197, 94, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.3);
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.sustainability-badge i {
    color: #4ade80;
    font-size: 1rem;
}

.sustainability-badge span {
    color: #4ade80;
    font-weight: 500;
}

.sustainability-title {
    font-size: 1.875rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .sustainability-title {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .sustainability-title {
        font-size: 3rem;
    }
}

.sustainability-text {
    color: #b3b3b3;
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.sustainability-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .sustainability-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.sustainability-item {
    background-color: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(247, 147, 30, 0.3);
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
}

.sustainability-icon {
    height: 3rem;
    width: 3rem;
    border-radius: 9999px;
    background-color: rgba(34, 197, 94, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
}

.sustainability-icon i {
    color: #4ade80;
    font-size: 1.5rem;
}

.sustainability-item h3 {
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.sustainability-item p {
    color: #b3b3b3;
    font-size: 0.875rem;
}

.sustainability-highlight {
    background-color: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 1rem;
    padding: 1.5rem;
    max-width: 42rem;
    margin: 0 auto;
}

.sustainability-highlight p {
    color: #86efac;
    text-align: center;
}

/* FAQ Section */
.faq {
    background-color: white;
    border-top: 1px solid rgba(179, 179, 179, 0.2);
    padding: 1rem 0;
    margin: 0;
}

@media (min-width: 768px) {
    .faq {
        padding: 2rem 0;
    }
}

.faq-container {
    margin: 0 auto;
    max-width: 48rem;
}

.accordion {
    width: 100%;
}

.accordion-item {
    border-bottom: 1px solid rgba(179, 179, 179, 0.2);
}

.accordion-trigger {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    font-weight: 500;
    transition: all 0.3s ease;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    color: #333;
}

.accordion-trigger:hover {
    color: #f7931e;
    text-decoration: underline;
}

.accordion-trigger i {
    transition: transform 0.2s ease;
}

.accordion-trigger.active i {
    transform: rotate(180deg);
}

.accordion-content {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.2s ease-out;
}

.accordion-content.active {
    max-height: 200px;
}

.accordion-content p {
    padding-bottom: 1rem;
    padding-top: 0;
    color: #b3b3b3;
    font-size: 0.875rem;
}

/* CTA Final Section */
.cta-final {
    position: relative;
    overflow: hidden;
}

.cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #333, #4b5563);
}

.cta-content {
    position: relative;
    text-align: center;
    color: white;
    padding: 1rem 0;
    margin: 0;
}

@media (min-width: 768px) {
    .cta-content {
        padding: 2rem 0;
    }
}

.cta-content h4 {
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .cta-content h4 {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .cta-content h4 {
        font-size: 3rem;
    }
}

.cta-content p {
    color: #b3b3b3;
    font-size: 1.25rem;
    max-width: 48rem;
    margin: 0 auto 1.5rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
    }
}

/* Footer */
.footer {
    border-top: 1px solid rgba(179, 179, 179, 0.2);
    background-color: #f9fafb;
    padding: 0.5rem 0;
    margin: 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: #b3b3b3;
}

@media (min-width: 640px) {
    .footer-content {
        flex-direction: row;
    }
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-link {
    color: #b3b3b3;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    text-decoration: underline;
    color: #f7931e;
}

.footer-separator {
    color: #b3b3b3;
}

/* Mobile CTA */
.mobile-cta {
    position: fixed;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    z-index: 30;
}

@media (min-width: 768px) {
    .mobile-cta {
        display: none;
    }
}

.mobile-cta-content {
    background-color: white;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-radius: 9999px;
    padding: 0.5rem;
    display: flex;
    gap: 0.5rem;
    border: 1px solid rgba(179, 179, 179, 0.2);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    z-index: 40;
    bottom: 1.5rem;
    right: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 3.5rem;
    width: 3.5rem;
    border-radius: 9999px;
    background-color: #22c55e;
    color: white;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #16a34a;
}

.whatsapp-float i {
    font-size: 1.75rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: linear-gradient(135deg, #f9fafb, #ffffff);
    margin: 5% auto;
    max-width: 80rem;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 1rem;
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
    position: relative;
}

.modal-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.modal-icon {
    height: 3rem;
    width: 3rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.modal-icon.primary {
    background: linear-gradient(135deg, #f7931e, #e8821a);
}

.modal-icon.secondary {
    background: linear-gradient(135deg, #fbbf24, #f7931e);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.modal-icon i {
    color: white;
    font-size: 1.5rem;
}

.modal-title {
    font-size: 1.875rem;
    font-weight: bold;
    background: linear-gradient(to right, #e8821a, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.modal-subtitle {
    color: #6b7280;
    font-size: 1.125rem;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #6b7280;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background-color: #f3f4f6;
    color: #374151;
}

.modal-body {
    padding: 2rem 0;
}

.locations-grid {
    max-width: 64rem;
    margin: 0 auto;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    justify-items: center;
}

@media (min-width: 640px) {
    .locations-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .locations-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.location-button {
    position: relative;
    width: 100%;
    max-width: 180px;
    height: 6rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    border: 2px solid;
    transition: all 0.3s ease;
    transform: scale(1);
    cursor: pointer;
    background-color: white;
    border-color: #e5e7eb;
}

.location-button:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: #f7931e;
    background: linear-gradient(135deg, rgba(247, 147, 30, 0.05), rgba(255, 255, 255, 0.95));
}

.location-button.selected {
    border-color: #f7931e;
    background: linear-gradient(135deg, rgba(247, 147, 30, 0.05), rgba(247, 147, 30, 0.1));
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
}

.location-button::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 1rem;
    background: linear-gradient(to right, rgba(247, 147, 30, 0.1), rgba(251, 191, 36, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.location-button:hover::before,
.location-button.selected::before {
    opacity: 1;
}

.location-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.location-icon {
    height: 2rem;
    width: 2rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.location-button .location-icon {
    background: linear-gradient(135deg, rgba(247, 147, 30, 0.8), rgba(247, 147, 30, 0.9));
}

.location-button:hover .location-icon,
.location-button.selected .location-icon {
    background: linear-gradient(135deg, #f7931e, #e8821a);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.location-icon i {
    color: white;
    font-size: 1.25rem;
}

.location-name {
    font-size: 0.75rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
    padding: 0 0.5rem;
    transition: color 0.3s ease;
    color: #374151;
}

.location-button:hover .location-name,
.location-button.selected .location-name {
    color: #e8821e;
}

.location-selection-indicator {
    position: absolute;
    top: -0.25rem;
    right: -0.25rem;
    height: 1rem;
    width: 1rem;
    background: linear-gradient(135deg, #4ade80, #22c55e);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    animation: pulse 2s infinite;
}

.location-selection-indicator::before {
    content: '';
    height: 0.5rem;
    width: 0.5rem;
    background-color: white;
    border-radius: 9999px;
}

.contact-section {
    max-width: 42rem;
    margin: 2rem auto 0;
}

.contact-section-content {
    background: linear-gradient(135deg, #f7931e, #fbbf24);
    border-radius: 1.5rem;
    padding: 2rem;
    color: white;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: slideInUp 0.5s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-section-content::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 1.5rem;
    opacity: 0.1;
}

.contact-section-content::before {
    background-image: radial-gradient(circle, currentColor 2px, transparent 2px);
    background-size: 40px 40px;
}

.contact-section-header {
    position: relative;
    z-index: 10;
    text-align: center;
}

.contact-section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.contact-section-icon {
    height: 2.5rem;
    width: 2.5rem;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-section-icon i {
    color: white;
    font-size: 1.5rem;
}

.contact-section-name {
    font-size: 1.5rem;
    font-weight: bold;
}

.contact-section-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.contact-section-buttons {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
}

@media (min-width: 640px) {
    .contact-section-buttons {
        flex-direction: row;
    }
}

.contact-section-general {
    background: linear-gradient(135deg, #f9fafb, #f3f4f6);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.contact-section-general-content {
    text-align: center;
}

.contact-section-general-icon {
    height: 4rem;
    width: 4rem;
    background: linear-gradient(135deg, rgba(247, 147, 30, 0.8), rgba(247, 147, 30, 0.9));
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.contact-section-general-icon i {
    color: white;
    font-size: 2rem;
}

.contact-section-general-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.contact-section-general-description {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .header-buttons {
        flex-direction: row;
        gap: 0.5rem;
    }
    
    .btn {
        font-size: 0.7rem;
        padding: 0.375rem 0.75rem;
    }
    
    .hero {
        padding: 0.5rem 0;
    }
    
    .title-main {
        font-size: 2rem;
    }
    
    .title-sub {
        font-size: 1.5rem;
    }
    
    .hero-image-wrapper {
        padding: 0 0.5rem;
    }
    
    .steps-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .step-card-offset,
    .step-card-offset-up,
    .benefit-card-offset,
    .benefit-card-offset-up {
        margin-top: 0;
    }
    
    .sustainability-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.5rem;
    }
    
    .header-buttons {
        gap: 0.25rem;
    }
    
    .btn {
        font-size: 0.65rem;
        padding: 0.25rem 0.5rem;
    }
    
    .hero-title {
        margin-bottom: 2rem;
    }
    
    .title-main {
        font-size: 1.75rem;
    }
    
    .title-sub {
        font-size: 1.25rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-text {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .locations-grid {
        grid-template-columns: 1fr;
    }
    
    .location-button {
        max-width: 100%;
    }
}
