/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

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

:root {
    --primary-color: #FF8E0C;
    --primary-dark: #E67A00;
    --primary-light: #FFA533;
    --secondary-color: #2C3E50;
    --text-dark: #1A1A1A;
    --text-medium: #4A4A4A;
    --text-light: #7C7C7C;
    --bg-white: #FFFFFF;
    --bg-light: #F8F9FA;
    --bg-dark: #111111;
    --border-color: #E0E0E0;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--bg-white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Header e Navegação */
header {
    background-color: var(--bg-white);
    padding: 1.25rem 2rem;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.95);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: auto;
    max-width: 280px;
    transition: var(--transition);
}

.logo img:hover {
    transform: scale(1.02);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-medium);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    padding: 0.5rem 0;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Menu Hamburger */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    gap: 5px;
    padding: 0.5rem;
}

.menu-toggle span {
    height: 3px;
    width: 28px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Conteúdo Principal */
main {
    width: 100%;
}

.hero {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 8rem 2rem;
    min-height: 70vh;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%), 
                url('../images/home_hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.7) 100%);
    z-index: 0;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
    max-width: 1000px;
}

.hero p {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-medium);
    font-weight: 400;
    position: relative;
    z-index: 1;
}

.highlight {
    color: var(--primary-color);
    font-weight: 700;
    position: relative;
}

/* Seção de Reels */
.reels-section {
    text-align: center;
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.reels-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/background_section_who.png') center/cover;
    opacity: 0.1;
    z-index: 0;
}

.reels-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 3rem;
    color: var(--bg-white);
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.reels-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.reel-placeholder {
    width: 100%;
    max-width: 400px;
    height: 600px;
    background-color: var(--bg-dark);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-lg);
    margin: 0 auto;
}

.reel-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 3px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: var(--transition);
}

.reel-placeholder:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.reel-placeholder:hover::before {
    opacity: 1;
}

.reel-placeholder video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

/* Services Section */
.services-section {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%);
    position: relative;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
}

.services-container h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.services-subtitle {
    text-align: center;
    color: var(--text-medium);
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    margin-bottom: 4rem;
    font-weight: 400;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 142, 12, 0.3);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(255, 142, 12, 0.4);
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: clamp(1.3rem, 2vw, 1.6rem);
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-description {
    color: var(--text-medium);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    min-height: 3.2rem;
}

.service-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--border-color);
}

.price-label {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-value {
    font-size: clamp(2rem, 3vw, 2.5rem);
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1;
}

.price-unit {
    font-size: 1rem;
    color: var(--text-medium);
    font-weight: 500;
}

.services-note {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 142, 12, 0.1) 0%, rgba(255, 142, 12, 0.05) 100%);
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    max-width: 800px;
    margin: 0 auto;
}

.services-note p {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.services-note i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Bio Section */
.bio-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    text-align: left;
    background-color: var(--bg-light);
}

.avatar-container {
    width: 100%;
    max-width: 400px;
    height: 400px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    flex-shrink: 0;
    border: 5px solid var(--bg-white);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
    position: relative;
}

.avatar-container::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.avatar-container:hover::after {
    opacity: 1;
}

.avatar-container:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(255, 142, 12, 0.3);
}

.avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition);
}

.bio-content {
    flex: 1;
    max-width: 700px;
}

.bio-content h2 {
    margin: 0 0 1.5rem 0;
    color: var(--text-dark);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    line-height: 1.3;
}

.bio-content p {
    margin: 0;
    color: var(--text-medium);
    line-height: 1.8;
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    font-weight: 400;
}

/* Footer e CTA */
footer {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1a1a1a 100%);
    padding: 5rem 2rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

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

.footer-content h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.footer-content > p {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    max-width: 600px;
    margin: 0 auto 3rem;
    color: #CCCCCC;
    font-weight: 400;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 142, 12, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition);
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 142, 12, 0.4);
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
}

.cta-button:active {
    transform: translateY(-1px);
}

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

.copyright {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999;
    font-size: 0.9rem;
}

.copyright a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.copyright a:hover {
    color: var(--primary-light);
    text-decoration: underline;
}

/* Responsividade */
@media (max-width: 1024px) {
    .nav-links {
        gap: 2rem;
    }
    
    .hero {
        padding: 6rem 2rem;
        min-height: 60vh;
    }
    
    .reels-container {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
    
    .reel-placeholder {
        max-width: 350px;
        height: 550px;
    }
    
    .services-section {
        padding: 5rem 2rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .bio-section {
        gap: 3rem;
        padding: 5rem 2rem;
    }
    
    .avatar-container {
        max-width: 350px;
        height: 350px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 1rem 1.5rem;
    }
    
    .logo img {
        max-width: 220px;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--bg-white);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 6rem 2rem 2rem;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        gap: 0;
        box-shadow: var(--shadow-lg);
        z-index: 1000;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links a {
        font-size: 1.25rem;
        padding: 1rem 0;
        width: 100%;
        border-bottom: 1px solid var(--border-color);
        color: var(--text-dark);
    }
    
    .nav-links a::after {
        display: none;
    }
    
    .hero {
        padding: 5rem 1.5rem;
        min-height: 50vh;
        background-attachment: scroll;
    }
    
    .reels-section {
        padding: 4rem 1.5rem;
    }
    
    .reels-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .reel-placeholder {
        max-width: 100%;
        height: 500px;
    }
    
    .services-section {
        padding: 4rem 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .services-note {
        padding: 1.5rem;
    }
    
    .services-note p {
        flex-direction: column;
        text-align: center;
    }
    
    .bio-section {
        flex-direction: column;
        text-align: center;
        gap: 2.5rem;
        padding: 4rem 1.5rem;
    }
    
    .avatar-container {
        width: 280px;
        height: 280px;
        margin: 0 auto;
    }
    
    .bio-content {
        text-align: center;
        width: 100%;
    }
    
    .footer-content {
        padding: 0;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .cta-button {
        width: 100%;
        max-width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    header {
        padding: 0.875rem 1rem;
    }
    
    .logo img {
        max-width: 180px;
    }
    
    .hero {
        padding: 4rem 1rem;
    }
    
    .reels-section {
        padding: 3rem 1rem;
    }
    
    .reel-placeholder {
        height: 450px;
        border-radius: 15px;
    }
    
    .services-section {
        padding: 3rem 1rem;
    }
    
    .services-grid {
        gap: 1.25rem;
    }
    
    .service-card {
        padding: 1.75rem 1.25rem;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
    }
    
    .service-icon i {
        font-size: 1.75rem;
    }
    
    .services-note {
        padding: 1.25rem;
    }
    
    .bio-section {
        padding: 3rem 1rem;
        gap: 2rem;
    }
    
    .avatar-container {
        width: 240px;
        height: 240px;
    }
    
    footer {
        padding: 4rem 1.5rem 2rem;
    }
}

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

/* Selection color */
::selection {
    background-color: var(--primary-color);
    color: white;
}

::-moz-selection {
    background-color: var(--primary-color);
    color: white;
}
