/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Seção Hero Principal */
.hero-main {
    min-height: 100vh;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    position: relative;
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.hero-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(243, 191, 30, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(214, 31, 207, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-left {
    animation: slideInLeft 1s ease-out;
}

.brand-logo {
    margin-bottom: 30px;
}

.brand-text {
    display: block;
    font-size: 1.2rem;
    font-weight: 800;
    color: #f3bf1e;
    letter-spacing: 3px;
}

.brand-subtitle {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: #d61fcf;
    letter-spacing: 2px;
    margin-top: 5px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #ffffff;
}

.highlight-yellow {
    color: #f3bf1e;
}

.highlight-pink {
    color: #d61fcf;
}

.hero-benefits {
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.benefit-item i {
    color: #f3bf1e;
    margin-right: 15px;
    font-size: 1.2rem;
}

.cta-button {
    background: linear-gradient(135deg, #f3bf1e 0%, #d61fcf 100%);
    border: none;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #000000;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(243, 191, 30, 0.3);
}

.cta-button i {
    font-size: 1.3rem;
}

/* Seção da Imagem */
.hero-right {
    display: flex;
    justify-content: center;
    animation: slideInRight 1s ease-out;
}

.profile-image-container {
    position: relative;
    width: 400px;
    height: 400px;
}

.profile-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    position: relative;
    z-index: 2;
    border: 3px solid #f3bf1e;
}

.image-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(circle, rgba(243, 191, 30, 0.3) 0%, rgba(214, 31, 207, 0.2) 50%, transparent 70%);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}

/* Seção Serviços */
.services-section {
    padding: 100px 0;
    background: #111111;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 60px;
    color: #ffffff;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #f3bf1e 0%, #d61fcf 100%);
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(243, 191, 30, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(243, 191, 30, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: #f3bf1e;
    box-shadow: 0 20px 40px rgba(243, 191, 30, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f3bf1e 0%, #d61fcf 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: #000000;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #f3bf1e;
}

.service-card p {
    font-size: 1rem;
    margin-bottom: 25px;
    color: #cccccc;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    text-align: left;
}

.service-features li {
    padding: 8px 0;
    color: #ffffff;
    position: relative;
    padding-left: 25px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #f3bf1e;
    font-weight: bold;
}

/* Seção Depoimentos */
.testimonials-section {
    padding: 100px 0;
    background: #000000;
}

.testimonials-grid-images, .testimonials-grid-videos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonials-grid-videos {
    margin-top: 30px;
}

.testimonial-image-card, .testimonial-video-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(214, 31, 207, 0.2);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.testimonial-image-card:hover, .testimonial-video-card:hover {
    transform: translateY(-5px);
    border-color: #d61fcf;
    box-shadow: 0 15px 30px rgba(214, 31, 207, 0.2);
}

.testimonial-image-card img {
    width: 100%;
    height: auto;
    display: block;
}

.testimonial-video-card video {
    width: 100%;
    height: auto;
    display: block;
}

/* Seção Sobre */
.about-section {
    padding: 100px 0;
    background: #111111;
}

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

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #f3bf1e;
    margin-bottom: 10px;
}

.about-text h3 {
    font-size: 1.3rem;
    color: #d61fcf;
    margin-bottom: 30px;
    font-weight: 600;
}

.about-text p {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 20px;
    line-height: 1.7;
}

/* Rodapé */
.footer {
    background: #000000;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(243, 191, 30, 0.2);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-brand .brand-text {
    font-size: 1.5rem;
    color: #f3bf1e;
}

.footer-brand .brand-subtitle {
    font-size: 1rem;
    color: #d61fcf;
}

.social-section h3 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 600;
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon.linkedin {
    background: #0077b5;
}

.social-icon.youtube {
    background: #ff0000;
}

.social-icon:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.social-icon i {
    color: #ffffff;
    font-size: 1.3rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999999;
}

/* Animações */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

/* Responsividade */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .profile-image-container {
        width: 300px;
        height: 300px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .profile-image-container {
        width: 250px;
        height: 250px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background-color: #111111;
    padding: 40px;
    border-radius: 20px;
    position: relative;
    max-width: 90%;
    max-height: 90%;
    border: 1px solid rgba(243, 191, 30, 0.3);
    animation: slideIn 0.3s ease;
}

.testimonial-modal-content {
    text-align: center;
    max-width: 600px;
    padding: 20px;
}

.testimonial-modal-content .quote-icon {
    font-size: 3rem;
    color: #d61fcf;
    margin-bottom: 20px;
}

.testimonial-modal-content p {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 30px;
    line-height: 1.6;
}

.testimonial-modal-content .author {
    font-size: 1.1rem;
    color: #f3bf1e;
    font-weight: 600;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: #ffffff;
    font-weight: bold;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #f3bf1e;
}

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

@keyframes slideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

