:root{
  --primary-700:#0063B0;
  --primary-600:#0079D6;
  --primary-500:#008FFE;
  --primary-300:#BFE1FF;
  --primary-100:#EAF5FF;
}

/* Reset and base styles */
* {
    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 {
    min-height: 100vh;
    background-color: #ffffff;
}

/* Typography */
.text-emerald {
    color: #008FFE;
}

/* Hero Section */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, #EAF5FF 0%, #ffffff 100%);
    padding: 5rem 1rem;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    background-image: url('data:image/svg+xml,%3Csvg%20width%3D%2260%22%20height%3D%2260%22%20viewBox%3D%220%200%2060%2060%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Cg%20fill%3D%22%23008ffe%22%20fill-opacity%3D%220.03%22%3E%3Ccircle%20cx%3D%2230%22%20cy%3D%2230%22%20r%3D%224%22/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
    opacity: 0.3;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

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

.hero-text {
    text-align: center;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1s ease-out forwards;
}

@media (min-width: 1024px) {
    .hero-text {
        text-align: left;
    }
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

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

.hero-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-button {
    background: #008FFE;
    color: white;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    box-shadow: 0 10px 25px -5px rgba(0, 143, 254, 0.3);
    transition: all 0.3s ease;
    transform: scale(1);
}

.cta-button:hover {
    background: #0063B0;
    box-shadow: 0 20px 25px -5px rgba(0, 143, 254, 0.4);
    transform: scale(1.05);
}

.hero-image {
    opacity: 0;
    transform: translateX(40px);
    animation: fadeInRight 1s ease-out 0.3s forwards;
}

.image-container {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.image-badge {
    position: absolute;
    bottom: -1rem;
    right: -1rem;
    background: white;
    border-radius: 0.75rem;
    padding: 1rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.image-badge p {
    color: #008FFE;
    font-weight: 600;
    margin: 0;
}

/* Sections */
.section-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    color: #1f2937;
    margin-bottom: 4rem;
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 2.5rem;
    }
}

/* Valores Section */
.valores-section {
    padding: 5rem 1rem;
    background: white;
}

.valores-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

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

.valor-card {
    text-align: center;
    padding: 2rem;
    border: 2px solid #EAF5FF;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    background: white;
}

.valor-card:hover {
    border-color: #BFE1FF;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.valor-icon {
    width: 4rem;
    height: 4rem;
    background: #EAF5FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: background-color 0.3s ease;
}

.valor-card:hover .valor-icon {
    background: #BFE1FF;
}

.icon {
    width: 2rem;
    height: 2rem;
    color: #008FFE;
}

.valor-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.valor-description {
    color: #6b7280;
    line-height: 1.6;
}

/* Programas Section */
.programas-section {
    padding: 5rem 1rem;
    background: linear-gradient(180deg, #F2F8FF 0%, #ffffff 100%);
}

.programas-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

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

.programa-card {
    padding: 1.5rem;
    border: 2px solid #f3f4f6;
    border-radius: 0.5rem;
    background: white;
    transition: all 0.3s ease;
}

.programa-card:hover {
    border-color: #BFE1FF;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.programa-icon {
    width: 3rem;
    height: 3rem;
    background: #EAF5FF;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: background-color 0.3s ease;
}

.programa-card:hover .programa-icon {
    background: #BFE1FF;
}

.programa-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.programa-description {
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.programa-stats {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    color: #008FFE;
    font-weight: 500;
}

/* Depoimentos Section */
.depoimentos-section {
    padding: 5rem 1rem;
    background: white;
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

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

.depoimento-card {
    padding: 1.5rem;
    border: 2px solid #f3f4f6;
    border-radius: 0.5rem;
    background: white;
    transition: all 0.3s ease;
}

.depoimento-card:hover {
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.depoimento-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.depoimento-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    margin-right: 0.75rem;
    object-fit: cover;
}

.depoimento-nome {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.stars {
    color: #fbbf24;
    font-size: 1rem;
}

.depoimento-texto {
    color: #6b7280;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.depoimento-resultado {
    background: #EAF5FF;
    border-radius: 0.5rem;
    padding: 0.75rem;
}

.depoimento-resultado p {
    color: #0063B0;
    font-weight: 500;
    font-size: 0.875rem;
    margin: 0;
}

/* Bônus Section */
.bonus-section {
    padding: 5rem 1rem;
    background: #008FFE;
    color: white;
}

.bonus-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
}

@media (min-width: 1024px) {
    .bonus-title {
        font-size: 2.5rem;
    }
}

.bonus-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(8px);
}

.bonus-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem;
    color: white;
}

.bonus-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.bonus-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.bonus-button {
    background: white;
    color: #008FFE;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bonus-button:hover {
    background: #f9fafb;
    transform: scale(1.05);
}

/* Contato Section */
.contato-section {
    padding: 5rem 1rem;
    background: #f9fafb;
}

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

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

.contato-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
    .contato-title {
        font-size: 2.5rem;
    }
}

.contato-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contato-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
}

.feature-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #008FFE;
    margin-right: 0.75rem;
}

.contato-form-container {
    background: white;
    padding: 2rem;
    border: 2px solid #EAF5FF;
    border-radius: 0.5rem;
}

.form-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.contato-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-input,
.form-textarea {
    padding: 0.75rem;
    border: 2px solid #BFE1FF;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #008FFE;
}

.form-button {
    background: #008FFE;
    color: white;
    padding: 0.75rem;
    font-size: 1.125rem;
    font-weight: 600;
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-button:hover {
    background: #0063B0;
    box-shadow: 0 10px 25px -5px rgba(0, 143, 254, 0.3);
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 3rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-subtitle {
    color: #9ca3af;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
}

.social-link.instagram {
    background: linear-gradient(45deg, #833ab4, #fd1d1d, #fcb045);
}

.social-link.whatsapp {
    background: #25d366;
}

.social-icon {
    width: 1.5rem;
    height: 1.5rem;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
}

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

/* Toast */
.toast {
    position: fixed;
    top: 2rem;
    right: 2rem;
    background: white;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    padding: 1rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1000;
    max-width: 300px;
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast-title {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.toast-description {
    color: #6b7280;
    font-size: 0.875rem;
    margin: 0;
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .contato-title {
        font-size: 1.75rem;
    }
    
    .bonus-title {
        font-size: 1.75rem;
    }
    
    .hero-section,
    .valores-section,
    .programas-section,
    .depoimentos-section,
    .bonus-section,
    .contato-section {
        padding: 3rem 1rem;
    }
    
    .toast {
        right: 1rem;
        left: 1rem;
        max-width: none;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}