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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #fef7ed 0%, #fed7aa 50%, #fef3c7 100%);
    min-height: 100vh;
    color: #92400e;
}

.container {
    max-width: 480px;
    margin: 0 auto;
    min-height: 100vh;
    background: transparent;
}

/* Header */
.header {
    position: relative;
    overflow: hidden;
    background: linear-gradient(to right, #fef3c7, #fed7aa);
    padding: 2rem 0;
}

.header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4B5A0' fill-opacity='0.1'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.header-content {
    position: relative;
    padding: 0 1.5rem;
    text-align: center;
}

.profile-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile-image-container {
    position: relative;
    margin-bottom: 1.5rem;
}

.profile-image {
    width: 128px;
    height: 128px;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.status-indicator {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 32px;
    height: 32px;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    animation: pulse 2s infinite;
}

.status-indicator i {
    color: white;
    font-size: 14px;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.name {
    font-size: 2rem;
    font-weight: bold;
    color: #92400e;
    margin-bottom: 0.5rem;
}

.bio {
    color: #a16207;
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.slogan {
    color: #92400e;
    font-weight: 500;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: #a16207;
    font-weight: 500;
}

.location i {
    color: #d97706;
}

/* Botões de Contato */
.contact-buttons {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 9999px;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    font-size: 0.875rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-instagram {
    background: linear-gradient(45deg, #e91e63, #e91e63);
}

.btn-instagram:hover {
    background: linear-gradient(45deg, #c2185b, #c2185b);
}

.btn-whatsapp {
    background: linear-gradient(45deg, #10b981, #059669);
}

.btn-whatsapp:hover {
    background: linear-gradient(45deg, #059669, #047857);
}

.btn-email {
    background: linear-gradient(45deg, #3b82f6, #2563eb);
}

.btn-email:hover {
    background: linear-gradient(45deg, #2563eb, #1d4ed8);
}

/* Main Content */
.main-content {
    padding: 2rem 1.5rem;
}

.card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid #f3e8ff;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.card:hover {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transform: scale(1.02);
}

.card-content {
    padding: 1.5rem;
}

.section-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #92400e;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.section-title i {
    color: #10b981;
}

/* Benefits */
.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #fef3e2;
    border-radius: 0.5rem;
    border: 1px solid #fde68a;
    transition: all 0.2s ease;
}

.benefit-item:hover {
    background: #fde68a;
    border-color: #f59e0b;
}

.benefit-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    flex-shrink: 0;
}

.benefit-text {
    color: #92400e;
    font-weight: 500;
}

/* Services */
.services-section {
    margin-bottom: 2rem;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-item {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid #f3e8ff;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-item:hover {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transform: scale(1.02);
}

.service-content {
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.service-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #fde68a, #fed7aa);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #a16207;
    font-size: 1.5rem;
}

.service-info {
    flex: 1;
}

.service-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #92400e;
    margin-bottom: 0.25rem;
}

.service-description {
    color: #a16207;
    line-height: 1.5;
}

/* CTA */
.cta-card {
    background: linear-gradient(45deg, #fde68a, #fed7aa);
    border-color: #f59e0b;
}

.cta-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-icon {
    color: #d97706;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    animation: pulse 2s infinite;
}

.cta-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #92400e;
    margin-bottom: 0.5rem;
}

.cta-text {
    color: #92400e;
    margin-bottom: 1.5rem;
}

.btn-cta {
    background: linear-gradient(45deg, #059669, #047857);
    font-size: 1.125rem;
    padding: 1rem 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.btn-cta:hover {
    background: linear-gradient(45deg, #047857, #065f46);
}

/* Footer */
.footer {
    background: linear-gradient(to right, #92400e, #d97706);
    color: white;
    padding: 2rem 0;
    margin-top: 3rem;
}

.footer-content {
    max-width: 480px;
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: center;
}

.footer-info {
    margin-bottom: 1rem;
}

.footer-name {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.registrations {
    margin: 0.5rem 0;
}

.registrations p {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0.25rem 0;
}

.footer-description {
    color: #fde68a;
    font-size: 0.875rem;
}

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

.social-btn {
    background: none;
    border: none;
    color: #fde68a;
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.2s ease;
}

.social-btn:hover {
    color: white;
}

.footer-credits {
    border-top: 1px solid #a16207;
    padding-top: 1rem;
}

.copyright {
    color: #fed7aa;
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
}

.developed-by {
    color: #fde68a;
    font-size: 0.75rem;
}

.developed-by a {
    color: #fef3c7;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.developed-by a:hover {
    color: white;
}

/* Responsive */
@media (max-width: 480px) {
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 200px;
        justify-content: center;
    }
}