* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #ffffff;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

.header {
    background: #ffffff;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 50;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(to right, #2563eb, #1d4ed8);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon span {
    color: white;
    font-weight: bold;
    font-size: 1.125rem;
}

.logo-text {
    font-family: 'Pacifico', cursive;
    font-size: 1.5rem;
    font-weight: bold;
    color: #2563eb;
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
}

.nav-link {
    color: #374151;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}

.nav-link:hover {
    color: #2563eb;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.login-container {
    position: relative;
}

.login-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #2563eb;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
}

.login-btn:hover {
    background: #1d4ed8;
}

.login-text {
    display: none;
}

@media (min-width: 640px) {
    .login-text {
        display: inline;
    }
}

.login-modal {
    position: absolute;
    right: 0;
    top: calc(100% + 0.5rem);
    width: 20rem;
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid #e5e7eb;
    padding: 1.5rem;
    z-index: 50;
    display: none;
}

.login-modal.active {
    display: block;
}

.login-header {
    text-align: center;
    margin-bottom: 1rem;
}

.login-header h3 {
    font-size: 1.125rem;
    font-weight: bold;
    color: #111827;
}

.login-header p {
    font-size: 0.875rem;
    color: #6b7280;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.25rem;
}

.form-group input {
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus {
    outline: none;
    border-color: transparent;
    box-shadow: 0 0 0 2px #3b82f6;
}

.btn-primary {
    width: 100%;
    background: #2563eb;
    color: white;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    text-decoration: none;
    text-align: center;
    transition: background-color 0.2s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #1d4ed8;
}

.login-footer {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
    text-align: center;
}

.login-footer p {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.signup-link {
    color: #2563eb;
    font-weight: 500;
    font-size: 0.875rem;
    text-decoration: none;
}

.signup-link:hover {
    color: #1d4ed8;
}

.close-btn {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: none;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 0.25rem;
    transition: color 0.2s;
}

.close-btn:hover {
    color: #6b7280;
}

.menu-toggle {
    display: block;
    background: none;
    border: none;
    color: #6b7280;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.25rem;
    transition: color 0.2s;
}

.menu-toggle:hover {
    color: #111827;
}

@media (min-width: 768px) {
    .menu-toggle {
        display: none;
    }
}

.nav-mobile {
    display: none;
    border-top: 1px solid #e5e7eb;
    padding: 1rem 0;
}

.nav-mobile.active {
    display: block;
}

.nav-mobile nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.nav-mobile-link {
    display: block;
    padding: 0.5rem 1rem;
    color: #374151;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: background-color 0.2s;
}

.nav-mobile-link:hover {
    background: #f9fafb;
}

.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 40;
    display: none;
}

.overlay.active {
    display: block;
}

.hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(to right, #2563eb, #1d4ed8, #1e40af);
    color: white;
    padding: 4rem 0;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://readdy.ai/api/search-image?query=Money%20rain%20falling%20from%20sky%2C%20golden%20coins%20and%20banknotes%20floating%20in%20air%2C%20lottery%20balls%2C%20Brazilian%20currency%2C%20celebration%20atmosphere%2C%20wealth%20and%20prosperity%2C%20dark%20blue%20background%20with%20golden%20elements&width=1400&height=800&seq=hero-money-rain&orientation=landscape');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
}

.hero-content {
    position: relative;
    text-align: center;
    margin-bottom: 2rem;
}

.hero-title {
    font-family: 'Pacifico', cursive;
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 2.25rem;
    }
}

.highlight {
    color: #fde047;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 64rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1.5rem;
    }
}

.hero-prize {
    background: linear-gradient(to right, #16a34a, #2563eb);
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 2px solid #3b82f6;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    text-align: center;
}

.hero-prize h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.prize-amount {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.prize-info {
    font-size: 1rem;
    opacity: 0.9;
}

.hero-actions {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.btn-cta {
    background: #22c55e;
    color: white;
    font-size: 1.25rem;
    font-weight: bold;
    padding: 1rem 3rem;
    border-radius: 0.75rem;
    text-decoration: none;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    white-space: nowrap;
}

.btn-cta:hover {
    background: #16a34a;
    transform: scale(1.05);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border-radius: 9999px;
    padding: 0.5rem 1rem;
}

.status-dot {
    width: 0.75rem;
    height: 0.75rem;
    background: #4ade80;
    border-radius: 50%;
    margin-right: 0.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.hero-badge span {
    font-size: 0.875rem;
    font-weight: 500;
}

.rifa-selector {
    padding: 5rem 0;
    background: white;
}

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

.section-header h2 {
    font-size: 2.25rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.25rem;
    color: #6b7280;
}

.selector-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid #e5e7eb;
    overflow: hidden;
    max-width: 64rem;
    margin: 0 auto;
}

.card-header {
    background: linear-gradient(to right, #2563eb, #1d4ed8);
    color: white;
    padding: 1.5rem;
    text-align: center;
}

.card-header h3 {
    font-size: 1.25rem;
    font-weight: bold;
}

.card-content {
    padding: 2rem;
}

.quick-add {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .quick-add {
        grid-template-columns: repeat(4, 1fr);
    }
}

.add-btn {
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    border: 1px solid #d1d5db;
    background: white;
    color: #374151;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    text-align: center;
}

.add-btn:hover {
    background: #f3f4f6;
}

.add-btn span {
    font-size: 0.75rem;
    color: #6b7280;
}

.add-btn:first-child {
    font-size: 1rem;
    font-weight: 500;
    color: #374151;
}

.selector-controls {
    background: #f9fafb;
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.quick-select {
    text-align: center;
    margin-bottom: 1.5rem;
}

.quick-label {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.quick-buttons {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.quick-btn {
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    border: 1px solid #d1d5db;
    background: white;
    color: #374151;
}

.quick-btn:hover {
    background: #f3f4f6;
}

.quick-btn.active {
    background: #2563eb;
    color: white;
    border-color: #2563eb;
}

.counter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.counter-btn {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s;
}

.counter-btn:hover:not(:disabled) {
    background: #f3f4f6;
}

.counter-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.counter-display {
    text-align: center;
    min-width: 7.5rem;
}

.counter-number {
    font-size: 2.25rem;
    font-weight: bold;
    color: #2563eb;
    margin-bottom: 0.25rem;
}

.counter-label {
    font-size: 0.875rem;
    color: #6b7280;
}

.price-summary {
    background: linear-gradient(to right, #ecfdf5, #dbeafe);
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.summary-header {
    text-align: center;
    margin-bottom: 1rem;
}

.summary-label {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.summary-price {
    font-size: 2.25rem;
    font-weight: bold;
    color: #16a34a;
    margin-bottom: 1rem;
}

.summary-details {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .summary-details {
        grid-template-columns: repeat(3, 1fr);
    }
}

.detail-item {
    background: white;
    border-radius: 0.5rem;
    padding: 0.75rem;
    text-align: center;
}

.detail-label {
    color: #6b7280;
    margin-bottom: 0.25rem;
}

.detail-value {
    font-weight: 600;
}

.detail-value.green {
    color: #16a34a;
}

.detail-value.blue {
    color: #2563eb;
}

.detail-value.purple {
    color: #7c3aed;
}

.btn-buy {
    width: 100%;
    background: #16a34a;
    color: white;
    font-size: 15px;
    font-weight: bold;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    text-decoration: none;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    white-space: nowrap;
    text-align: center;
}

.btn-buy:hover {
    background: #15803d;
    transform: scale(1.05);
}

.security-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: #6b7280;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.badge i.green {
    color: #16a34a;
}

.badge i.blue {
    color: #2563eb;
}

.badge i.purple {
    color: #7c3aed;
}

.features {
    padding: 5rem 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature-card {
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
}

.feature-card.highlight {
    background: linear-gradient(to bottom right, #dbeafe, #bfdbfe);
    border: 2px solid #bfdbfe;
}

.feature-card:hover {
    transform: scale(1.05);
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    color: white;
}

.feature-icon.blue {
    background: #2563eb;
}

.feature-icon.gray {
    background: #6b7280;
}

.feature-icon i {
    font-size: 1.5rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: #6b7280;
}

.how-it-works {
    background: linear-gradient(to right, #ecfdf5, #dbeafe);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
}

.how-it-works h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 2rem;
}

.steps {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .steps {
        grid-template-columns: repeat(3, 1fr);
    }
}

.step {
    background: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.step-number {
    font-size: 1.875rem;
    margin-bottom: 0.75rem;
}

.step h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.step p {
    color: #6b7280;
    font-size: 0.875rem;
}

.steps-footer {
    font-size: 1.25rem;
    font-weight: bold;
    color: #16a34a;
}

.prize-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom right, #1e3a8a, #1e40af, #6b21a8);
    color: white;
    position: relative;
    overflow: hidden;
}

.prize-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://readdy.ai/api/search-image?query=Money%20rain%20falling%20from%20sky%2C%20golden%20coins%20and%20banknotes%20floating%20in%20air%2C%20lottery%20balls%2C%20Brazilian%20currency%2C%20celebration%20atmosphere%2C%20wealth%20and%20prosperity%2C%20dark%20blue%20background%20with%20golden%20elements&width=1400&height=800&seq=prize1&orientation=landscape');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
}

.section-header.white {
    color: white;
    position: relative;
    margin-bottom: 4rem;
}

.section-header.white h2 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.section-header.white p {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.highlight-yellow {
    color: #fde047;
}

.important-notice {
    background: linear-gradient(to right, #22c55e, #2563eb);
    border-radius: 0.75rem;
    padding: 1rem;
    margin: 0 auto;
    max-width: 32rem;
    border: 2px solid #fbbf24;
}

.important-notice p {
    font-size: 1.125rem;
    font-weight: bold;
}

.prizes-caixa {
    position: relative;
    margin-bottom: 4rem;
}

.prizes-header {
    text-align: center;
    margin-bottom: 2rem;
}

.prizes-header h3 {
    font-size: 1.875rem;
    font-weight: bold;
    color: #fde047;
    margin-bottom: 1rem;
}

.prizes-header p {
    font-size: 1.125rem;
    opacity: 0.9;
}

.sub-info {
    font-size: 1rem;
    opacity: 0.8;
    margin-top: 0.5rem;
}

.prizes-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .prizes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .prizes-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.prize-card {
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    border: 2px solid;
}

.prize-card.gold {
    background: linear-gradient(to bottom right, #eab308, #d97706);
    color: black;
    border-color: #fbbf24;
}

.prize-card.purple {
    background: linear-gradient(to bottom right, #8b5cf6, #ec4899);
    color: white;
    border-color: #a855f7;
}

.prize-card.blue {
    background: linear-gradient(to bottom right, #3b82f6, #06b6d4);
    color: white;
    border-color: #60a5fa;
}

.prize-card.green {
    background: linear-gradient(to bottom right, #22c55e, #10b981);
    color: white;
    border-color: #4ade80;
}

.prize-emoji {
    font-size: 2.25rem;
    margin-bottom: 0.75rem;
}

.prize-card h4 {
    font-size: 1.125rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.prize-amount {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.25rem;
}

.prize-card p {
    font-size: 0.875rem;
    opacity: 0.8;
}

.prize-tag {
    font-size: 0.75rem;
    margin-top: 0.5rem;
    opacity: 0.7;
}

.proof-section {
    padding: 5rem 0;
    background: #f9fafb;
}

.proof-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .proof-content {
        grid-template-columns: 1fr 1fr;
    }
}

.whatsapp-mockup {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.whatsapp-header {
    background: #22c55e;
    color: white;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.whatsapp-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.whatsapp-icon {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
}

.whatsapp-icon i {
    color: #22c55e;
    font-size: 1.25rem;
}

.whatsapp-name {
    font-weight: 600;
}

.whatsapp-subtitle {
    font-size: 0.875rem;
    opacity: 0.9;
}

.whatsapp-time {
    font-size: 0.875rem;
    opacity: 0.9;
}

.whatsapp-content {
    padding: 1.5rem;
}

.whatsapp-message {
    background: #dcf8c6;
    border-radius: 1rem;
    padding: 1rem;
    margin-bottom: 1rem;
}

.message-title {
    font-weight: 600;
    color: #166534;
    margin-bottom: 0.5rem;
}

.message-amount {
    font-size: 1.5rem;
    font-weight: bold;
    color: #166534;
}

.message-btn {
    background: #22c55e;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    margin-top: 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
}

.message-btn:hover {
    background: #16a34a;
}

.whatsapp-footer {
    color: #6b7280;
    font-size: 0.875rem;
}

.testimonials {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    /* Garantir visibilidade */
    visibility: visible;
    opacity: 1;
}

.testimonial {
    padding: 1.5rem;
    border-radius: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    background: white;
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.testimonial:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.testimonial.active {
    background: #dbeafe;
    border: 2px solid #bfdbfe;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.testimonial img {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    object-fit: cover;
    object-position: top;
}

.testimonial-content {
    flex: 1;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.testimonial-header h4 {
    font-weight: bold;
    color: #111827;
}

.testimonial-header span {
    font-size: 0.875rem;
    color: #6b7280;
}

.testimonial-header i {
    color: #3b82f6;
}

.testimonial p {
    color: #374151;
    font-style: italic;
    margin-bottom: 0.75rem;
}

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

.stars {
    display: flex;
    gap: 0.25rem;
}

.stars i {
    color: #fbbf24;
}

.testimonial-rating span {
    font-size: 0.875rem;
    color: #6b7280;
}

.footer {
    background: #111827;
    color: white;
    padding: 3rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-section h4 {
    font-weight: bold;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #9ca3af;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-section a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-section a:hover {
    color: white;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: #9ca3af;
    font-size: 0.875rem;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
}

.footer-partners {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    margin-bottom: 2rem;
    /* Garantir visibilidade */
    visibility: visible;
    opacity: 1;
}

.footer-partners h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #d1d5db;
    margin-bottom: 1rem;
    text-align: center;
}

.partners-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .partners-logos {
        gap: 3rem;
    }
}

.partner-logo {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border-radius: 0.5rem;
    padding: 1rem;
    transition: all 0.2s;
    cursor: pointer;
}

.partner-logo:hover {
    background: rgba(255, 255, 255, 0.2);
}

.partner-logo img {
    height: 3rem;
    width: auto;
    object-fit: contain;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-legal {
    color: #9ca3af;
    font-size: 0.875rem;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-legal {
        text-align: left;
    }
}

.footer-disclaimer {
    font-size: 0.75rem;
    color: #6b7280;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-disclaimer {
        text-align: right;
    }
}

.hidden {
    display: none;
}

.visible {
    display: block;
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-description {
        font-size: 1.125rem;
    }
    
    .section-header h2 {
        font-size: 1.875rem;
    }
    
    .section-header p {
        font-size: 1.125rem;
    }
}