@import url("homeColors.css");
@import url("fonts.css");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins-Regular', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    /* font-family: 'Inter', sans-serif; */
    color: var(--dark-text);
    overflow-x: hidden !important;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins-Regular', sans-serif;
    font-weight: 700;
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary);
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    z-index: 100;
    border-radius: 4px;
}

.skip-link:focus {
    top: 10px;
    left: 10px;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 1rem 0;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
}

.logo-box {
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
    font-family: 'Poppins-Regular', sans-serif;
}

.logo-text {
    font-family: 'Poppins-Regular', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 1.2;
    color: var(--light-text);
}

header.scrolled .logo-text {
    color: var(--dark-text);
}

.logo-subtext {
    font-size: 0.75rem;
    color: var(--muted);
}

.navbar-nav .nav-link {
    color: var(--light-text);
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    border-radius: 8px;
    transition: all 0.2s ease;
}

header.scrolled .navbar-nav .nav-link {
    color: var(--dark-text);
}

.navbar-nav .nav-link:hover {
    background: rgba(29, 40, 120, 0.1);
    color: var(--light-text);
}

.btn-hero {
    background: linear-gradient(135deg, var(--accent) 0%, #FFD670 100%);
    border: none;
    color: var(--dark-text);
    padding: 12px 32px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 200, 87, 0.4);
}

.btn-hero:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 200, 87, 0.6);
    color: var(--dark-text);
}

.phone-link {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    transition: color 0.2s;
}

header.scrolled .phone-link {
    color: var(--dark-text);
}

.phone-link:hover {
    color: var(--accent);
}

/* Mobile Menu */
.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%231D2878' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.offcanvas {
    width: 320px !important;
    max-width: 85vw;
}

.offcanvas .nav-link {
    color: var(--dark-text);
    padding: 0.75rem 1rem !important;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 50%, var(--primary) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.hero-bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.hero-bg-shape-1 {
    top: -160px;
    right: -160px;
    width: 320px;
    height: 320px;
    background: rgba(255, 200, 87, 0.1);
    animation: pulse-subtle 4s ease-in-out infinite;
}

.hero-bg-shape-2 {
    top: 50%;
    left: -80px;
    width: 240px;
    height: 240px;
    background: rgba(255, 255, 255, 0.05);
    animation: float 6s ease-in-out infinite;
}

.hero-bg-shape-3 {
    bottom: 80px;
    right: 25%;
    width: 160px;
    height: 160px;
    background: rgba(255, 200, 87, 0.05);
    animation: pulse-subtle 3s ease-in-out infinite 1s;
}

.badge-pulse {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
}

.pulse-dot {
    position: relative;
    width: 8px;
    height: 8px;
}

.pulse-dot-inner {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
}

.pulse-dot-outer {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
    opacity: 0.75;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-title-accent {
    position: relative;
    color: var(--accent);
    display: inline-block;
}

.hero-title-underline {
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 12px;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.btn-accent {
    background: var(--accent);
    border: none;
    color: var(--dark-text);
    padding: 15px 40px;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 200, 87, 0.4);
}

.btn-accent:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 200, 87, 0.6);
    background: #FFD670;
    color: var(--dark-text);
}

.btn-hero-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 15px 40px;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-hero-outline:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-3px);
}

.trust-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.trust-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 200, 87, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-weight: 700;
    font-size: 1.125rem;
}

.trust-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.trust-label {
    font-size: 0.75rem;
    line-height: 1;
}

.divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

/* Lead Form */
.lead-form-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.form-label {
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.form-control,
.form-select {
    border: 2px solid #E5E7EB;
    border-radius: 10px;
    padding: 12px 16px;
    transition: all 0.3s ease;
    font-size: 0.875rem;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(29, 40, 120, 0.15);
}

.form-control.is-invalid {
    border-color: #dc3545;
}

.invalid-feedback {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

.honeypot {
    position: absolute;
    left: -9999px;
}

textarea.form-control {
    resize: none;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s;
    background: none;
    border: none;
    cursor: pointer;
    animation: bounce-subtle 2s ease-in-out infinite;
}

.scroll-indicator:hover {
    color: white;
}

/* Sections */
section {
    padding: 80px 0;
    position: relative;
}

.section-badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: rgba(29, 40, 120, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--muted);
    margin-bottom: 3rem;
}

.text-primary-custom {
    color: var(--primary);
}

/* Feature Cards */
.feature-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: rgba(29, 40, 120, 0.3);
}

.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.feature-card:hover::after {
    transform: scaleX(1);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: rgba(29, 40, 120, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

.feature-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 0.75rem;
    transition: color 0.3s;
}

.feature-card:hover .feature-title {
    color: var(--primary);
}

.feature-description {
    color: var(--muted);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Program Info Box */
.program-info-box {
    background: linear-gradient(135deg, rgba(29, 40, 120, 0.05) 0%, rgba(29, 40, 120, 0.1) 50%, rgba(29, 40, 120, 0.05) 100%);
    border-radius: 20px;
    padding: 3rem;
    margin-top: 4rem;
}

.age-badge {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
}

.age-number {
    font-size: clamp(3rem, 8vw, 4rem);
    font-weight: 700;
    font-family: 'Poppins-Regular', sans-serif;
}

.gratuito-badge {
    position: absolute;
    bottom: -1rem;
    right: -1rem;
    background: var(--accent);
    color: var(--dark-text);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 200, 87, 0.4);
}

/* History Section */
.bg-muted {
    background: var(--light-bg);
}

.history-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.history-date-icon {
    width: 64px;
    height: 64px;
    background: rgba(29, 40, 120, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 2rem;
}

.history-stats {
    background: rgba(29, 40, 120, 0.03);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.history-stat {
    padding: 1.5rem;
    text-align: center;
}

.history-stat-number {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    color: var(--primary);
    font-family: 'Poppins-Regular', sans-serif;
}

.history-stat-label {
    font-size: 0.875rem;
    color: var(--muted);
}

.btn-outline-primary-custom {
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 600;
    background: transparent;
    transition: all 0.3s ease;
}

.btn-outline-primary-custom:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* Mission Cards */
.mission-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: rgba(29, 40, 120, 0.3);
}

.mission-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(29, 40, 120, 0.1), rgba(29, 40, 120, 0.2));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.75rem;
    transition: all 0.3s ease;
}

.mission-card:hover .mission-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
}

.mission-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 0.75rem;
    transition: color 0.3s;
}

.mission-card:hover .mission-title {
    color: var(--primary);
}

/* Quote */
.quote-section {
    position: relative;
    padding: 2rem;
}

.quote-mark {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 4rem;
    color: rgba(29, 40, 120, 0.2);
    font-family: 'Poppins-Regular', sans-serif;
    line-height: 1;
}

.quote-text {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    font-weight: 500;
    font-style: italic;
    color: var(--dark-text);
    position: relative;
    z-index: 1;
}

.quote-author {
    margin-top: 1rem;
    color: var(--muted);
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 50%, var(--primary) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.stats-bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.stats-bg-1 {
    top: 40px;
    left: 40px;
    width: 160px;
    height: 160px;
    background: rgba(255, 255, 255, 0.05);
}

.stats-bg-2 {
    bottom: 40px;
    right: 40px;
    width: 240px;
    height: 240px;
    background: rgba(255, 200, 87, 0.1);
}

.stats-badge {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.15);
}

.stat-icon-box {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.5rem;
    background: rgba(255, 200, 87, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.75rem;
    transition: transform 0.3s;
}

.stat-card:hover .stat-icon-box {
    transform: scale(1.1);
}

.stat-number {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: white;
    font-family: 'Poppins-Regular', sans-serif;
    line-height: 1;
}

.stat-label {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin-top: 0.75rem;
    margin-bottom: 0.25rem;
}

.stat-description {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Donations Section */
.donation-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

.donation-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.donation-header {
    padding: 2rem;
}

.donation-header-accent {
    background: linear-gradient(135deg, var(--accent) 0%, #FFD670 100%);
}

.donation-header-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.donation-icon-box {
    width: 56px;
    height: 56px;
    background: rgba(15, 23, 42, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
}

.donation-body {
    padding: 2rem;
}

.donation-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.donation-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    font-size: 0.875rem;
}

.btn-whatsapp {
    background: #25D366;
    border: none;
    color: white;
    padding: 12px 24px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    color: white;
}

.bazar-notice {
    background: rgba(255, 200, 87, 0.1);
    border: 1px solid rgba(255, 200, 87, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    margin-top: 3rem;
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--dark-text) 0%, #1a1a2e 100%);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-logo-box {
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
    font-family: 'Poppins-Regular', sans-serif;
}

.footer-title {
    color: var(--accent);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.2s;
    display: inline-block;
}

.footer-link:hover {
    color: var(--accent);
    padding-left: 5px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1.25rem;
}

.social-link:hover {
    background: var(--accent);
    color: var(--dark-text);
    transform: translateY(-5px);
}

.newsletter-input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-input:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent);
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
    padding-top: 2rem;
}

.btn-scroll-top {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 8px;
    color: white;
    transition: all 0.3s;
}

.btn-scroll-top:hover {
    background: var(--primary);
    transform: translateY(-5px);
    color: white;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse-subtle {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes ping {

    75%,
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes bounce-subtle {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.delay-100 {
    animation-delay: 100ms;
}

.delay-200 {
    animation-delay: 200ms;
}

.delay-300 {
    animation-delay: 300ms;
}

.delay-400 {
    animation-delay: 400ms;
}

/* Responsive */
@media (max-width: 991px) {
    section {
        padding: 60px 0;
    }

    .hero-section {
        padding-top: 100px;
    }

    .program-info-box {
        margin-top: 2rem;
        padding: 2rem;
    }
}

@media (max-width: 767px) {
    .trust-indicators {
        justify-content: center !important;
    }

    .lead-form-card {
        margin-top: 2rem;
    }
}

.ewt-brand {
    font-size: 1.5rem;
    font-family: 'Poppins-Bold', sans-serif !important;
    font-weight: 900 !important;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}

/* Botão flutuante do WhatsApp */
#whatsappButton {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
    text-decoration: none;
    z-index: 999;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Hover e foco com animação suave */
#whatsappButton:hover,
#whatsappButton:focus {
    transform: scale(1.08);
    box-shadow: 0 10px 32px rgba(0, 255, 245, 0.25);
    text-decoration: none;
    color: #fff;
}

/* Ícone */
#whatsappButton i {
    line-height: 1;
}

/* Responsividade (telas muito pequenas) */
@media (max-width: 575.98px) {
    #whatsappButton {
        width: 50px;
        height: 50px;
        bottom: 16px;
        right: 16px;
        font-size: 1.6rem;
    }
}

#whatsappButton::after {
    content: "Fale conosco!";
    position: absolute;
    right: 70px;
    bottom: 50%;
    transform: translateY(50%);
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    font-size: 0.8rem;
    padding: 4px 8px;
    border-radius: 6px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    white-space: nowrap;
}

#whatsappButton:hover::after {
    opacity: 1;
}

/* Contact Section */
.contact-section {
    background: white;
}

.contact-form-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
}

.contact-form-card h3 {
    color: var(--primary);
}

.map-container {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.map-container iframe {
    display: block;
    /* Remove espaços em branco do iframe */
    width: 100%;
    height: 100%;
}

.contact-info-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: rgba(29, 40, 120, 0.3);
}

.contact-info-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s ease;
}

.contact-info-card:hover .contact-info-icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-info-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 0.75rem;
}

.contact-info-text {
    color: var(--muted);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.contact-info-text a {
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
}

.contact-info-text a:hover {
    color: var(--primary);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .map-container {
        min-height: 400px;
    }

    .contact-form-card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 767px) {
    .map-container {
        min-height: 350px;
    }
}

/* Additional mobile fixes */
@media (max-width: 767px) {
    .map-container {
        min-height: 350px;
        width: 100% !important;
        /* Force full width on mobile */
    }

    .contact-form-card {
        width: 100%;
        max-width: 100%;
    }

    .contact-info-card {
        width: 100%;
    }

    /* Ensure no element causes horizontal scroll */
    * {
        max-width: 100%;
    }
}

/* Fix horizontal scroll - Specific elements only */
/* .row {
    margin-left: 0;
    margin-right: 0;
} */

.map-container {
    width: 100%;
    max-width: 100%;
    height: 100%;
    min-height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 100%;
}

/* Prevent any section from causing horizontal scroll */
section {
    overflow-x: hidden;
}

/* Mobile specific fixes */
@media (max-width: 767px) {
    .map-container {
        min-height: 350px;
    }

    /* Ensure form cards don't overflow */
    .contact-form-card,
    .contact-info-card {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    /* Fix any row that might overflow */
    .row {
        --bs-gutter-x: 1.5rem;
        margin-left: calc(var(--bs-gutter-x) * -0.5);
        margin-right: calc(var(--bs-gutter-x) * -0.5);
    }
}