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

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #333;
}

html {
    scroll-behavior: smooth;
}

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

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.btn-primary {
    background: linear-gradient(135deg, #f59e0b, #ea580c);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #d97706, #dc2626);
}

.btn-secondary {
    border: 2px solid white;
    color: white;
    background: transparent;
}

.btn-secondary:hover {
    background: white;
    color: #333;
}

.btn-outline {
    background: #374151;
    color: white;
    border: none;
}

.btn-outline:hover {
    background: #1f2937;
}

.btn-whatsapp {
    background: #16a34a;
    color: white;
}

.btn-whatsapp:hover {
    background: #15803d;
}

.btn-instagram {
    background: #db2777;
    color: white;
}

.btn-instagram:hover {
    background: #be185d;
}
.btn-carousel-single {
    background: linear-gradient(135deg, #f59e0b, #ea580c);
    color: white;
    border-radius: 50px;
    padding: 14px 40px;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-carousel-single:hover {
    background: linear-gradient(135deg, #ea580c, #dc2626);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 30px rgba(245, 158, 11, 0.6);
}

.full-width {
    width: 100%;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    position: relative;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.logo-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #f59e0b, #ea580c);
    border-radius: 50%;
}

.logo-text {
    position: relative;
    color: white;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 1px;
}

.logo-dot {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 12px;
    height: 12px;
    background: #fbbf24;
    border-radius: 50%;
    opacity: 0.8;
}

.logo-name {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #f59e0b;
}

.nav-btn {
    background: linear-gradient(135deg, #f59e0b, #ea580c);
    color: white;
    padding: 8px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: linear-gradient(135deg, #d97706, #dc2626);
    transform: scale(1.05);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: #374151;
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 16px;
    padding: 20px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-link {
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 0;
}

/* Hero Carousel */
.hero-carousel {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.7s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.carousel-content {
    max-width: 800px;
    color: white;
    animation: fadeInUp 1s ease-out;
}

.carousel-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 800;
    margin-bottom: 16px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease-out;
}

.carousel-subtitle {
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: #fbbf24;
    margin-bottom: 16px;
    font-weight: 300;
    animation: fadeInUp 1s ease-out;
    animation-delay: 0.1s;
    animation-fill-mode: both;
}

.carousel-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: 40px;
    opacity: 0.9;
    animation: fadeInUp 1.1s ease-out;
    animation-delay: 0.2s;
    animation-fill-mode: both;
}

/* Botão CTA Fixo Centralizado */
.carousel-cta-fixed {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    animation: fadeInUp 1.2s ease-out;
    animation-delay: 0.3s;
    animation-fill-mode: both;
}

.btn-carousel-cta {
    display: inline-block;
    padding: 16px 48px;
    background: linear-gradient(135deg, #f59e0b, #ea580c);
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-carousel-cta:hover {
    background: linear-gradient(135deg, #ea580c, #dc2626);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 35px rgba(245, 158, 11, 0.6);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 24px;
    padding: 12px 16px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 50;
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

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

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

.carousel-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 50;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background: #f59e0b;
    transform: scale(1.25);
}

/* Sections */
section {
    padding: 80px 0;
}

.section-center {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 16px;
}

.section-description {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.section-icon {
    font-size: 24px;
}

.section-label {
    color: #f59e0b;
    font-weight: 600;
    font-size: 18px;
}

/* About Section */
.about-section {
    background: white;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), transparent);
    border-radius: 50%;
    transform: translate(50%, -50%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content {
    space-y: 32px;
}

.about-description {
    font-size: 18px;
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 32px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateX(8px);
}

.feature-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #f59e0b, #ea580c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 14px;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding-top: 32px;
    border-top: 1px solid #e5e7eb;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #f59e0b;
    margin-bottom: 8px;
}

.stat-label {
    color: #6b7280;
    font-weight: 500;
}

.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.image-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.image-column.offset {
    margin-top: 48px;
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
}

.about-image:hover {
    transform: scale(1.05);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.1);
}

.testimonial {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), rgba(234, 88, 12, 0.1));
    padding: 48px;
    border-radius: 24px;
    text-align: center;
    margin-top: 80px;
}

.stars {
    font-size: 24px;
    color: #fbbf24;
    margin-bottom: 24px;
}

.testimonial blockquote {
    font-size: 1.5rem;
    font-style: italic;
    color: #374151;
    margin-bottom: 24px;
    line-height: 1.6;
}

.testimonial cite {
    color: #6b7280;
    font-weight: 600;
}

/* Partners Section */
.partners-section {
    background: #f9fafb;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.partner-item {
    text-align: center;
    transition: transform 0.3s ease;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    touch-action: manipulation;
    padding: 8px;
    border-radius: 8px;
}

.partner-item:hover,
.partner-item:active {
    transform: scale(1.1);
}

.partner-logo {
    width: 96px;
    height: 96px;
    margin: 0 auto 16px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    background: white;
    padding: 8px;
    transition: box-shadow 0.3s ease;
}

.partner-item:hover .partner-logo {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.partner-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.partner-name {
    font-weight: 500;
    color: #6b7280;
    transition: color 0.3s ease;
}

.partner-item:hover .partner-name {
    color: #f59e0b;
}

.partner-cta-text {
    margin-bottom: 24px;
    color: #6b7280;
}

/* Plans Section */
.plans-section {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.05), rgba(255, 255, 255, 1), rgba(234, 88, 12, 0.05));
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
}

.plan-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    position: relative;
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.plan-card.featured {
    transform: scale(1.05);
    border: 2px solid #fbbf24;
}

.popular-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background: linear-gradient(135deg, #f59e0b, #ea580c);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    z-index: 10;
}

.plan-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.plan-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.plan-card:hover .plan-image img {
    transform: scale(1.1);
}

.plan-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    display: flex;
    align-items: flex-end;
    padding: 24px;
}

.plan-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
}

.plan-content {
    padding: 32px;
}

.plan-price {
    text-align: center;
    margin-bottom: 24px;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 8px;
}

.price-label {
    color: #6b7280;
}

.plan-description {
    text-align: center;
    color: #6b7280;
    margin-bottom: 32px;
    font-size: 16px;
}

.plan-features {
    margin-bottom: 32px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #374151;
    font-size: 14px;
}

.more-features {
    color: #f59e0b;
    font-weight: 600;
    font-size: 14px;
    margin-top: 16px;
}

.plan-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.plan-buttons button {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    user-select: none;
}

.action-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #f9fafb, white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 24px;
}

.contact-info p {
    color: #6b7280;
    margin-bottom: 32px;
    line-height: 1.6;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.contact-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.contact-icon.whatsapp { background: linear-gradient(135deg, #16a34a, #15803d); }
.contact-icon.email { background: linear-gradient(135deg, #3b82f6, #2563eb); }
.contact-icon.phone { background: linear-gradient(135deg, #f59e0b, #ea580c); }
.contact-icon.instagram { background: linear-gradient(135deg, #db2777, #be185d); }
.contact-icon.location { background: linear-gradient(135deg, #ef4444, #dc2626); }

.contact-title {
    font-weight: 600;
    color: #1f2937;
}

.contact-value {
    color: #6b7280;
}

.business-hours {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), rgba(234, 88, 12, 0.1));
    padding: 24px;
    border-radius: 12px;
}

.hours-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.hours-icon {
    font-size: 24px;
}

.hours-header h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    color: #6b7280;
}

.hours-item span:last-child {
    font-weight: 500;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 48px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 32px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #374151;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #f59e0b;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

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

.form-message {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 24px;
    text-align: center;
    font-weight: 500;
}

.form-message.success {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.form-message.error {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.form-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.btn-icon {
    font-size: 18px;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), transparent);
    border-radius: 50%;
    transform: translate(50%, -50%);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 64px;
    margin-bottom: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.footer-description {
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 24px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-contact-item {
    color: #9ca3af;
    font-size: 14px;
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: #fbbf24;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fbbf24;
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.social-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.social-icon {
    font-size: 18px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid #374151;
}

.footer-info,
.footer-copyright {
    color: #9ca3af;
    font-size: 14px;
}

.footer-info p {
    margin-bottom: 4px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    animation: modalBackdrop 0.3s ease-out;
}

@keyframes modalBackdrop {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    background: white;
    border-radius: 24px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    animation: modalSlide 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalSlide {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-header {
    background: linear-gradient(135deg, #f59e0b, #ea580c);
    padding: 32px;
    position: relative;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
}

.modal-header h2 {
    font-size: 2rem;
    font-weight: 700;
    position: relative;
}

.modal-header span {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 1.5rem;
    font-weight: 700;
    position: relative;
}

.modal-close {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 24px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.modal-body {
    padding: 32px;
    max-height: calc(90vh - 200px);
    overflow-y: auto;
}

/* Pop-up de Email */
.email-popup {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 3000;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease-out;
}

.email-popup.active {
    display: flex;
}

.email-popup-content {
    background: white;
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.email-popup-icon {
    font-size: 64px;
    margin-bottom: 20px;
    animation: bounce 0.6s ease-out;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.email-popup-icon.success {
    color: #16a34a;
}

.email-popup-icon.error {
    color: #dc2626;
}

.email-popup-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
}

.email-popup-content p {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 24px;
    line-height: 1.6;
}

.email-popup-content .btn {
    min-width: 150px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .plan-card.featured {
        transform: none;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .logo-name {
        display: none;
    }
    
    .carousel-title {
        font-size: 2.5rem;
    }
    
    .carousel-subtitle {
        font-size: 1.25rem;
    }
    
    .carousel-description {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .carousel-cta-fixed {
        bottom: 80px;
    }
    
    .btn-carousel-cta {
        padding: 12px 32px;
        font-size: 16px;
    }
    
    .carousel-content {
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .about-images {
        grid-template-columns: 1fr;
    }
    
    .image-column.offset {
        margin-top: 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 32px 24px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .modal-content {
        margin: 5px;
        max-height: 95vh;
        width: calc(100% - 10px);
    }
    
    .modal-header {
        padding: 20px;
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .modal-close {
        position: absolute;
        top: 10px;
        right: 10px;
        width: 35px;
        height: 35px;
        font-size: 20px;
        z-index: 1000;
    }
    
    .modal-body {
        padding: 20px;
        max-height: calc(95vh - 120px);
        overflow-y: auto;
    }
    
    /* Melhorar botões nos modais mobile */
    .modal-body button {
        padding: 14px 20px !important;
        font-size: 14px !important;
        border-radius: 8px !important;
        margin-bottom: 10px;
        min-height: 44px; /* iOS recommended touch target */
    }
    
    /* Melhorar área de toque para partners */
    .partner-item {
        min-height: 44px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 12px;
    }
    
    /* Melhorar botões Saiba Mais mobile */
    .plan-buttons .btn {
        min-height: 44px;
        padding: 12px 20px;
        font-size: 15px;
    }
    
    .carousel-content {
        margin-top: -20px;
    }
}