/* --- Design System: Cores e Tipografia (REMODELADO COM ROXO) --- */
:root {
    --primary: #6A0DAD;
    /* Roxo Vibrante (da logo) */
    --secondary: #19192E;
    /* Azul Marinho Escuro (da logo) */
    --background: #F9F9FD;
    /* Fundo Principal (Branco com tom azulado) */
    --foreground: #19192E;
    /* Texto Principal (Azul Marinho Escuro) */
    --muted: #FFFFFF;
    /* Fundo de Cards/Footer (Branco) */
    --muted-foreground: #5A5A72;
    /* Texto Secundário (Cinza azulado) */
    --primary-foreground: #FFFFFF;
    /* Texto para botões com fundo primário (Branco) */
    --border-color: #EAEAF2;
    /* Cor das Bordas */
    --section-purple-bg: #F0E8F8;
    /* Um roxo bem claro para seções alternadas */
    --gradient-hero: var(--primary);
    --gradient-primary: var(--primary);
    --gradient-card: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.07), 0 2px 4px -2px rgb(0 0 0 / 0.07);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.08), 0 4px 6px -4px rgb(0 0 0 / 0.08);
    --agency-section-bg: var(--background);
    --agency-text-color: var(--foreground);
    --agency-item-icon-color: var(--primary);
    --agency-item-text-color: var(--muted-foreground);
    --shape-color-1: var(--primary);
    --shape-color-2: var(--secondary);
}

/* --- Reset e Configurações Globais --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    scroll-behavior: smooth;
    max-width: 100vw;
    overflow-x: hidden;
}

body {
    font-family: var(--font-sans);
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
}

body.no-scroll {
    overflow: hidden;
}

/* --- Header / Navegação --- */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    background-color: var(--secondary);
}

#main-header.sticky {
    background-color: var(--secondary);
    box-shadow: var(--shadow-md);
}

#main-header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100px;
    padding: 0 5%;
}

.navbar-left {
    display: flex;
    align-items: center;
    gap: 25px;
}

.logo img {
    height: 160px;
}

.header-socials {
    display: flex;
    gap: 1.5rem;
}

.header-socials a {
    color: var(--primary);
    transition: color 0.3s ease, transform 0.3s ease;
    font-size: 1.4rem;
}

.header-socials a:hover {
    color: #fff;
    transform: scale(1.1);
}

/* --- Estilos do Menu Hambúrguer --- */
.menu-button {
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1002;
    padding: 0.5rem;
    color: var(--foreground);
}

.menu-button .icon-close {
    display: none;
}

#main-header.nav-open .menu-button .icon-close {
    display: block;
}

#main-header.nav-open .menu-button .icon-menu {
    display: none;
}

.nav-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(249, 249, 253, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 999;
}

#main-header.nav-open .nav-container {
    transform: translateX(0);
}

.nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 0;
    margin-bottom: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--foreground);
    font-weight: 500;
    font-size: 1.8rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links li {
    transform: translateX(-50px);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

#main-header.nav-open .nav-links li:nth-child(1) {
    transform: translateX(0);
    opacity: 1;
    transition-delay: 0.1s;
}

#main-header.nav-open .nav-links li:nth-child(2) {
    transform: translateX(0);
    opacity: 1;
    transition-delay: 0.2s;
}

#main-header.nav-open .nav-links li:nth-child(3) {
    transform: translateX(0);
    opacity: 1;
    transition-delay: 0.3s;
}

#main-header.nav-open .nav-links li:nth-child(4) {
    transform: translateX(0);
    opacity: 1;
    transition-delay: 0.4s;
}

#main-header.nav-open .nav-links li:nth-child(5) {
    transform: translateX(0);
    opacity: 1;
    transition-delay: 0.5s;
}

#main-header.nav-open .nav-links li:nth-child(6) {
    transform: translateX(0);
    opacity: 1;
    transition-delay: 0.6s;
}

#main-header.nav-open .nav-links li:nth-child(7) {
    transform: translateX(0);
    opacity: 1;
    transition-delay: 0.7s;
}

.menu-logo {
    height: 138px;
    margin-bottom: -1.5rem;
    transform: translateX(-50px);
    opacity: 0;
    transition: opacity 0.3s ease 0.7s, transform 0.3s ease 0.7s;
}

#main-header.nav-open .menu-logo {
    transform: translateX(0);
    opacity: 1;
}

.menu-socials {
    display: flex;
    gap: 2rem;
    transform: translateX(-50px);
    opacity: 0;
    transition: opacity 0.3s ease 0.8s, transform 0.3s ease 0.8s;
}

#main-header.nav-open .menu-socials {
    transform: translateX(0);
    opacity: 1;
}

.menu-socials a {
    color: var(--muted-foreground);
    font-size: 1.8rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.menu-socials a:hover {
    color: var(--primary);
    transform: scale(1.1);
}

/* --- Seções e Conteúdo --- */
#banner-section {
    width: 100vw;
    max-width: 100vw;
    padding: 0;
    margin: 0;
    position: relative;
    background: var(--background);
    overflow: hidden;
    padding-top: 100px; /* Espaço para o header fixo */
}

.section-spacer {
    height: 80px;
    background-color: var(--background);
    width: 100%;
}

/* --- Seção: SOBRE A CRIAR --- */
#about-criar {
    padding: 40px 5% 4rem 5%;
    background-color: var(--secondary);
    display: block;
}

.about-criar-title {
    text-align: center;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--primary-foreground);
    margin-bottom: 2.5rem;
    letter-spacing: -2px;
}

.about-criar-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.about-criar-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

.about-criar-text h2 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    color: var(--primary-foreground);
    margin-bottom: 1.5rem;
}

.about-criar-text p {
    font-size: 1.7rem;
    color: var(--background);
}

/* --- Seção: NOSSOS SERVIÇOS (com card flutuante) --- */
#about-agency {
    padding: 1.0rem 5%;
    background-color: var(--background);
}

.about-agency-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    position: relative;
    z-index: 1;
    background: var(--gradient-primary);
    padding: 4rem;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

.about-agency-text h2 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
    color: var(--primary-foreground);
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
}

.about-agency-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.agency-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.agency-item .agency-icons {
    height: 105px;
    width: auto;
    margin-bottom: -1.0rem;
}

.agency-item p {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-foreground);
    line-height: 1.3;
}

/* --- Seção HERO (PARCERIA) --- */
#hero {
    min-height: auto;
    display: flex;
    align-items: center;
    padding: 4rem 5%;
    background-color: var(--foreground);
    color: var(--foreground);
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
    padding-bottom: 0;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
    padding-bottom: 5rem;
    padding-top: 2rem;
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -1px;
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    color: var(--primary);
}

#hero .hero-text h1 {
    background: linear-gradient(90deg, #F357A8 0%, #F7971E 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    padding-bottom: 25px;
}

.hero-text h2,
.hero-text p {
    color: var(--background);
}

@media (max-width: 1024px) {
    .hero-text p{
margin-bottom: 15px;
}
.casting-title, .benefits-intro h2 , .clientes-title{
    padding-top: 20px !important;
    padding-bottom: 35px !important;
    font-size: 2.8rem !important;
}
}


.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 2rem;
}

.hero-stats>div {
    display: flex;
    flex-direction: column;
}

.hero-stats strong {
    font-size: 2rem;
    font-weight: 700;
    color: var(--background);
}

.hero-stats span {
    font-size: 1rem;
    color: var(--background);
}

.form-card {
    background: var(--muted);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    color: var(--foreground);
}

.form-card h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    color: var(--primary);
}

.form-group {
    margin-bottom: 1rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background-color: var(--background);
    color: var(--muted-foreground);
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input::placeholder {
    color: var(--muted-foreground);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(106, 13, 173, 0.2);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%235A5A72' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.5rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
}

.cta-button {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    background: var(--gradient-primary);
    color: var(--primary-foreground);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.3s, background-color 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: #5a0b94;
}

.error-message {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: none;
}

.form-group.error .error-message {
    display: block;
}

.form-group.error input,
.form-group.error select {
    border-color: #ef4444;
}

/* --- Demais Seções (Benefits, Footer, etc.) --- */
#benefits {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    background-color: var(--background);
}

.benefits-intro h2 {
    font-size: 2.0rem;
    font-weight: 700;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.2;
    color: var(--foreground);
}

.benefits-intro p {
    font-size: 1.1rem;
    color: var(--muted-foreground);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.5;
}

.benefit-card {
    background: var(--primary);
    padding: 2rem;
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid var(--border-color);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.benefit-card i {
    width: 48px;
    height: 48px;
    color: var(--primary-foreground);
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-foreground);
}

.benefit-card p {
    color: var(--primary-foreground);
}

#contact {
    background-color: var(--secondary) !important;
    color: var(--primary-foreground) !important;
    padding: 2rem 5%;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 3rem;
    flex-wrap: wrap;
}

.footer-left {
    flex-basis: 35%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
}

.footer-logo {
    height: 180px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-copyright {
    color: var(--primary-foreground);
    font-size: 0.9rem;
}

.footer-right {
    flex-basis: 60%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2.5rem;
}

.footer-contact-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-button,
.footer-button-secondary {
    text-decoration: none;
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.footer-button {
    background-color: var(--primary);
    color: var(--primary-foreground);
    border-color: var(--primary);
}

.footer-button:hover {
    background-color: transparent;
    color: var(--primary);
}

.footer-button-secondary {
    background-color: transparent;
    border: 2px solid var(--primary-foreground);
    color: var(--primary-foreground);
}

.footer-button-secondary:hover {
    background-color: var(--muted-foreground);
    color: var(--muted);
}

.footer-bottom-links {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    order: 1;
    text-align: left;
}

.footer-social-icons {
    display: flex;
    gap: 1.5rem;
    order: 2;
}

.footer-social-icons a {
    color: var(--primary-foreground);
    font-size: 1.4rem;
    transition: all 0.3s ease;
}

.footer-social-icons a:hover {
    color: var(--primary);
    transform: scale(1.1);
}

.footer-privacy-link {
    color: var(--primary-foreground);
    text-decoration: underline;
    transition: color 0.3s ease;
    order: 3;
}

.footer-privacy-link:hover {
    color: var(--primary);
}

#toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}

.toast {
    background-color: #333;
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 10px;
    opacity: 0;
    transition: opacity 0.5s, transform 0.5s;
    transform: translateX(100%);
}

.toast.show {
    opacity: 1;
    transform: translateX(0);
}

.toast.success {
    background-color: #4caf50;
}

.toast.error {
    background-color: #f44336;
}

#thank-you-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 120px 5% 4rem;
    background-color: var(--background);
}

.thank-you-card {
    background: var(--muted);
    padding: 0;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    max-width: 1000px;
    width: 100%;
    border: 1px solid var(--border-color);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.thank-you-banner {
    width: 100%;
}

.thank-you-banner img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 2rem;
}

.back-to-home-button {
    text-decoration: none;
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    background-color: var(--primary);
    color: var(--primary-foreground);
    border: 2px solid var(--primary);
    margin-bottom: 2rem;
}

.back-to-home-button:hover {
    background-color: transparent;
    color: var(--primary);
}

/* --- AJUSTE PARA ROLAGEM COM HEADER FIXO --- */
#about-criar,
#about-agency,
#casting,
#benefits,
#hero,
#contact {
    scroll-margin-top: 100px !important;
}

/* --- Media Queries Gerais --- */
@media (max-width: 1024px) {    
    .logo img {
        height: 140px;
    }

    .about-criar-title {
        margin-bottom: 1rem;
        font-size: 2.5rem;
    }

    .hero-content,
    .about-criar-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 5px;
    }

    .hero-stats {
        justify-content: center;
        margin-bottom: 25px;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    #about-agency,
    #about-criar {
        padding: 2rem 5%;
    }

    #about-criar {
        padding-top: 40px;
    }

    #about-agency .about-agency-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    #about-agency .about-agency-text h2,
    .about-criar-text h2 {
        font-size: 2.8rem;
    }

    #about-agency .about-agency-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    #about-agency .agency-item p,
    .about-criar-text p {
        font-size: 1rem;
    }

    .about-criar-image {
        order: -1;
    }
}

@media (max-width: 992px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-left,
    .footer-right {
        flex-basis: 100%;
        align-items: center;
        width: 100%;
    }

    .footer-left {
        margin-bottom: 2rem;
    }

    .footer-contact-group {
        justify-content: center;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer-logo {
        height: 135px;
        margin-bottom: 1rem;
    }

    .casting-title {
        font-size: 2.5rem;
        padding-top: 0px !important;
        padding-bottom: 42px !important;
    }
    
}

@media (max-width: 768px) {
    #main-header nav {
        height: 60px;
    }

    #about-criar,
    #about-agency,
    #creators,
    #benefits,
    #hero,
    #contact {
        scroll-margin-top: 60px;
    }

    #about-criar {
        padding-top: 40px;
    }

    .thank-you-card {
        max-width: 90%;
    }

    .thank-you-banner img {
        margin-bottom: 1.5rem;
    }

    .back-to-home-button {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .logo img {
        height: 110px;
    }

    .navbar-left {
        gap: 10px;
    }

    .header-socials {
        gap: 1rem;
    }

    .header-socials a {
        font-size: 1.2rem;
    }

    #main-header.nav-open .navbar-left .logo,
    #main-header.nav-open .header-socials {
        display: none;
    }

    .hero-text {
        text-align: center; /* ADICIONADO PARA GARANTIR CENTRALIZAÇÃO */
    }

    .hero-text h1 {
        font-size: 1.9rem;
    }

    #about-agency,
    #about-criar {
        padding-left: 5%;
        padding-right: 5%;
    }

    #about-agency .about-agency-text h2,
    .about-criar-text h2 {
        font-size: 2.2rem;
    }

    #about-agency .about-agency-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .agency-item i,
    .agency-item .agency-icons {
        font-size: 3rem;
        height: 130px;
        margin-bottom: -2.0rem;
    }

    .agency-item p {
        font-size: 1rem;
    }

    .section-spacer {
        height: 50px;
    }

    .footer-bottom-links {
        border-top: 1px solid var(--border-color);
        padding-top: 1.5rem;
        margin-top: 1rem;
    }

    .benefits-grid {        
        grid-template-columns: 1fr;
        padding: 0;
    }

    .casting-title,
    .benefits-intro,
    .clientes-title{
        font-size: 2.5rem !important;
    }
    
    /* --- INÍCIO: AJUSTES CARROSSEL BENEFITS RESPONSIVO --- */
    .embla .embla__controls {
        gap: 1rem; /* Reduz o espaçamento para telas menores */
    }

    .embla .embla__button {
        position: static; /* Tira o posicionamento absoluto */
        transform: none; /* Remove a translação vertical */
        background: transparent; /* Remove o fundo branco para integrar melhor */
        color: var(--foreground); /* Cor que combine com o texto */
        box-shadow: none; /* Remove a sombra */
        padding: 0; /* Remove padding extra */
        font-size: 2rem; /* Ajusta o tamanho do ícone */
    }

    .embla .embla__button:disabled {
        opacity: 0.4;
    }
    /* --- FIM: AJUSTES CARROSSEL BENEFITS RESPONSIVO --- */
}

#creators {
    padding: 4rem 5%;
    background-color: var(--background);
}

@media (max-width: 1024px) {
    .creators-gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }

    .creators-gallery-title {
        font-size: 2.8rem;
    }

    .creator-card-info h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    #creators {
        padding: 4rem 5%;
    }

    .creators-gallery-title {
        font-size: 2.2rem;
    }

    .creators-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .creator-card-info h3 {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .creators-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* --- Modal --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    background-color: rgba(25, 25, 46, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.modal-overlay:not(.hidden) {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    position: relative;
    background-color: var(--muted);
    border-radius: 24px;
    padding: 2rem;
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.modal-overlay:not(.hidden) .modal-content {
    transform: scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--background);
    color: var(--foreground);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.modal-close-btn:hover {
    background: var(--primary);
    color: var(--primary-foreground);
    transform: rotate(90deg);
}

.modal-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 2.5rem;
    align-items: center;
}

.modal-media-container {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background-color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-media-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    width: 80px;
    height: 80px;
    background-color: rgba(106, 13, 173, 0.9);
    color: var(--primary-foreground);
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.modal-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background-color: var(--primary);
}

.modal-play-btn i {
    width: 40px;
    height: 40px;
    margin-left: 5px;
}

.modal-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.instagram-media {
    max-height: 100% !important;
    margin: auto !important;
}

.modal-media-container.video-active #modal-img,
.modal-media-container.video-active #modal-play-btn {
    display: none;
}

.modal-info h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary);
}

/* --- Páginas de Detalhe --- */
#influencer-detail-section {
    padding: 140px 5% 4rem;
    background-color: var(--section-purple-bg);
}

.influencer-detail-container {
    max-width: 1100px;
    margin: 0 auto;
}

.back-to-gallery-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--muted-foreground);
    text-decoration: none;
    margin-bottom: 2rem;
    transition: color 0.3s ease;
}

.back-to-gallery-btn:hover {
    color: var(--primary);
}

.detail-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 3rem;
    align-items: center;
}

.detail-media-content {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
}

.detail-media-content img {
    width: 100%;
    height: auto;
    display: block;
}

.detail-info h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.detail-info p {
    color: var(--muted-foreground);
    font-size: 1.2rem;
    line-height: 1.7;
}

.detail-socials {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.detail-socials a {
    color: var(--muted-foreground);
    font-size: 2rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.detail-socials a:hover {
    color: var(--primary);
    transform: scale(1.1);
}

/* --- Seções Casting e Clientes --- */
.casting-section,
.clientes-section,
#casting {
    background: var(--background);
}

.casting-gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    justify-items: center;
    align-items: start;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 40px auto;
    box-sizing: border-box;
    grid-row-gap: 40px;
}

.casting-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card-image-flip {
    position: relative;
    width: 140px;
    height: 140px;
    perspective: 900px;
    margin-bottom: 12px;
    transition: transform 0.9s cubic-bezier(.25, .8, .25, 1);
    transform-style: preserve-3d;
}

.casting-card:hover .card-image-flip {
    transform: rotateY(180deg);
}

.card-image-front,
.card-image-back {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 16px;
    overflow: hidden;
    backface-visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-image-front {
    z-index: 2;
    background: transparent;
}

.card-image-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

.card-image-back {
    background: var(--secondary);
    color: var(--primary-foreground);
    transform: rotateY(180deg);
    z-index: 1;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    padding: 0 8px;
}

.card-back-text {
    width: 100%;
    text-align: center;
    word-break: break-word;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100%;
}

.casting-card-name {
    font-weight: 900 !important;
    margin-bottom: 4px;
    margin-top: 2px;
    min-height: 28px;
    line-height: 1.2;
    text-align: center;
    padding: 0 2px;
    max-width: 175px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    box-sizing: border-box;
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    -webkit-text-fill-color: initial;
    color: var(--primary);
    font-size: 1.1rem;
}

.casting-card-btn {
    background: var(--secondary) !important;
    color: var(--primary-foreground) !important;
    border: none;
    border-radius: 8px;
    padding: 8px 0;
    width: 90px !important;
    min-width: 0 !important;
    max-width: 100px !important;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    margin-top: 2px;
    margin-bottom: 0;
    transition: background 0.2s, color 0.2s;
    text-decoration: none;
    display: block;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
    margin-left: auto;
    margin-right: auto;
}

.casting-card-btn:hover {
    background: #2a2a4a !important;
}

.casting-section,
#casting {
    margin-top: 0;
    padding-bottom: 35px;
}

.casting-title,
.clientes-title,
.benefits-intro {
    text-align: center;
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: -3px;
    text-transform: lowercase;
    line-height: 1.1;
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    color: var(--foreground);
    padding-bottom: 10px;
    padding-top: 15px;
}

.casting-title{
    padding-top: 35px ;
    padding-bottom: 50px ;
}

.clientes-title {
    margin-top: 20px;
    margin-bottom: 15px;
}

.clientes-gallery {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    justify-items: center;
    align-items: center;
    margin-top: 25px;
    width: 100%;
    box-sizing: border-box;
    padding-right:100px;
    padding-left: 100px;
}

.clientes-gallery img {
    height: 70px;
    max-width: 180px;
    object-fit: contain;
    background: var(--background);
    border-radius: 8px;
    padding: 8px 16px;
    box-shadow: none;
    transition: transform 0.2s;
}

.clientes-gallery img:hover {
    transform: scale(1.07);
}

@media (max-width: 480px) {
    .clientes-gallery {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
        padding: 0 8px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .embla__slide{
        flex: 0 0 100% !important;
    }

}

@media (min-width: 481px) and (max-width: 900px){
    .embla:not(.embla-banner) .embla__slide {
        flex: 0 0 50% !important;
    }
    
}
@media (min-width: 320px) and (max-width: 900px){
    #banner-section {
        padding-top: 49px;
    }

}
@media (max-width: 375px) {
    .clientes-gallery {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }
}

@media (min-width: 481px) and (max-width: 900px) {

    .clientes-gallery {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 16px !important;
    }
}

@media (max-width: 500px) {
    #main-header nav {
        height: 60px !important;
        padding: 0 3%;
    }

    .casting-gallery-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 12px !important;
        padding: 0 8px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .casting-card,
    .card-image-flip {
        width: 100% !important;
        max-width: none !important;
        height: auto !important;
    }

    .card-image-flip {
        aspect-ratio: 1 / 1;
        margin-bottom: 8px !important;
    }

    .card-image-front,
    .card-image-back,
    .card-image-front img {
        width: 100% !important;
        height: 100% !important;
        min-width: 0 !important;
        max-width: none !important;
        object-fit: cover;
    }

    .casting-card-name,
    .casting-card-btn {
        width: 100% !important;
        max-width: none !important;
        min-width: 0 !important;
    }

    .casting-card-name {
        font-size: 1rem !important;
        margin-top: 4px;
        margin-bottom: 8px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .casting-card-btn {
        font-size: 0.9rem !important;
        padding: 8px 0;
    }

    .logo img {
        height: 80px !important;
        margin-top: 4px !important;
    }

    .header-socials {
        gap: 1.2rem !important;
    }

    .header-socials a {
        font-size: 1rem !important;
    }
}

@media (min-width: 501px) and (max-width: 900px) {

    .casting-gallery-grid {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 24px 16px !important;
        padding: 0 24px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .casting-card,
    .card-image-flip {
        width: 100% !important;
        max-width: none !important;
        height: auto !important;
    }

    .card-image-flip {
        aspect-ratio: 1 / 1;
        margin-bottom: 8px !important;
    }

    .card-image-front,
    .card-image-back,
    .card-image-front img {
        width: 100% !important;
        height: 100% !important;
        min-width: 0 !important;
        max-width: none !important;
        object-fit: cover;
    }

    .casting-card-name,
    .casting-card-btn {
        width: 100% !important;
        max-width: none !important;
        min-width: 0 !important;
    }

    .casting-card-name {
        font-size: 20px !important;
        margin-top: 4px;
        margin-bottom: 8px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .casting-card-btn {
        font-size: 15px !important;
        padding: 9px 0;
    }

      .embla-services .embla__slide {
    flex: 0 0 32% !important;
    max-width: 90vw !important;
    height: 270px !important;
  }
  .embla-services .embla__container {
    gap: 1.5rem;
  }
}

@media (min-width: 901px) {
    .casting-gallery-grid {
        justify-items: center;
    }

    .casting-card {
        width: 150px !important;
        height: auto !important;
    }

    .card-image-flip {
        width: 140px !important;
        height: 140px !important;
        margin: 0 auto !important;
    }

    .casting-card-name {
        text-transform: uppercase !important;
        margin-top: 15px !important;
        margin-bottom: 10px !important;
    }

    .casting-card-btn {
        width: 140px !important;
    }
}

/* --- Ajustes Finais e Cores --- */
.menu-button {
    color: #fff !important;
}

.menu-button:hover {
    color: var(--primary) !important;
}

.header-socials a {
    color: #fff;
    transition: color 0.3s ease, transform 0.3s ease;
    font-size: 1.4rem;
}

.header-socials a:hover {
    color: var(--primary);
    transform: scale(1.1);
}

.about-agency-text h2,
.casting-title,
.clientes-title,
.benefits-intro h2,
#about-agency h2,
#benefits h2,
#clientes h2 {
    color: var(--foreground) !important;
    background: none !important;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
}

.casting-card-btn {
    width: 90px !important;
    min-width: 0 !important;
    max-width: 100px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.casting-card-name {
    font-weight: 900 !important;
}

.benefits-grid .benefit-card:nth-child(1) {
    background: linear-gradient(135deg, #7B2FF2 0%, #F357A8 100%);
    color: #fff;
}

.benefits-grid .benefit-card:nth-child(2) {
    background: linear-gradient(135deg, #43CEA2 0%, #185A9D 100%);
    color: #fff;
}

.benefits-grid .benefit-card:nth-child(3) {
    background: linear-gradient(135deg, #f71ede 0%, #c2af5a 100%);
    color: #fff;
}

.benefits-grid .benefit-card:nth-child(4) {
    background: linear-gradient(135deg, #045325 0%, #e0e71f 100%);
    color: #fff;
}

.benefits-grid .benefit-card:nth-child(5) {
    background: linear-gradient(135deg, #5a0122 0%, #602749 100%);
    color: #fff;
}

.benefits-grid .benefit-card:nth-child(6) {
    background: linear-gradient(135deg, #0e0249 0%, #a006a3 100%);
    color: #fff;
}

.clientes-section,
#clientes {
    background: var(--background) !important;
    padding-bottom: 70px;
}

section,
#about-agency,
#benefits,
#casting,
#clientes,
#hero,
#creators {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0px;
}

#about-criar {
    padding-bottom: 4rem;
    padding-left: 5%;
    padding-right: 5%;
}

#about-agency,
#benefits,
#hero,
#creators {
    padding-left: 5%;
    padding-right: 5%;
}

/* --- Embla Carousel (NÃO BANNER) --- */
.embla {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.embla__viewport {
    overflow: hidden;
    width: 100%;
}

.embla__container {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.embla .embla__slide {
    min-width: 1500px;
    height: 575px;
    background: var(--foreground);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #222;
    font-size: 2.5rem;
    font-weight: 700;
    box-shadow: none;
    margin: 0;
    transition: box-shadow 0.2s, transform 0.2s;
}

/* Desktop: 3 cards */
.embla-services .embla__slide {
    flex: 0 0 33.3333% !important;
    max-width: 320px !important;
    height: 400px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 16px rgba(25,25,46,0.07);
    padding: 0 !important;
    margin: 0 auto !important;
    transition: box-shadow 0.2s, transform 0.2s;
}

.embla-services .embla__slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 20px;
    background: #fff;
    display: block;
}

/* Tablet: 2 cards */
@media (max-width: 1024px) {
    .embla-services .embla__slide {
        flex: 0 0 50% !important;
        max-width: 90vw !important;
        height: 290px !important;
    }
    .embla-services .embla__slide img {
        border-radius: 16px;
    }
}

/* Mobile: 1 card */
@media (max-width: 600px) {
    .embla-services .embla__slide {
        flex: 0 0 100% !important;
        max-width: 98vw !important;
        height: 180px !important;
    }
    .embla-services .embla__container {
        gap: 1rem;
    }
}


/* 3 cards: telas grandes (acima de 900px) */
@media (min-width: 901px) {
  .embla-services .embla__slide {
    flex: 0 0 33.3333% !important;
    max-width: 320px !important;
    height: 400px !important;
  }
  .embla-services .embla__container {
    gap: 2rem;
  }
}

/* --- Design System: Cores e Tipografia (REMODELADO COM ROXO) --- */
:root {
    --primary: #6A0DAD;
    /* Roxo Vibrante (da logo) */
    --secondary: #19192E;
    /* Azul Marinho Escuro (da logo) */
    --background: #F9F9FD;
    /* Fundo Principal (Branco com tom azulado) */
    --foreground: #19192E;
    /* Texto Principal (Azul Marinho Escuro) */
    --muted: #FFFFFF;
    /* Fundo de Cards/Footer (Branco) */
    --muted-foreground: #5A5A72;
    /* Texto Secundário (Cinza azulado) */
    --primary-foreground: #FFFFFF;
    /* Texto para botões com fundo primário (Branco) */
    --border-color: #EAEAF2;
    /* Cor das Bordas */
    --section-purple-bg: #F0E8F8;
    /* Um roxo bem claro para seções alternadas */
    --gradient-hero: var(--primary);
    --gradient-primary: var(--primary);
    --gradient-card: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.07), 0 2px 4px -2px rgb(0 0 0 / 0.07);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.08), 0 4px 6px -4px rgb(0 0 0 / 0.08);
    --agency-section-bg: var(--background);
    --agency-text-color: var(--foreground);
    --agency-item-icon-color: var(--primary);
    --agency-item-text-color: var(--muted-foreground);
    --shape-color-1: var(--primary);
    --shape-color-2: var(--secondary);
}

/* --- Reset e Configurações Globais --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    scroll-behavior: smooth;
    max-width: 100vw;
    overflow-x: hidden;
}

body {
    font-family: var(--font-sans);
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
}

body.no-scroll {
    overflow: hidden;
}

/* --- Header / Navegação --- */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    background-color: var(--secondary);
}

#main-header.sticky {
    background-color: var(--secondary);
    box-shadow: var(--shadow-md);
}

#main-header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100px;
    padding: 0 5%;
}

.navbar-left {
    display: flex;
    align-items: center;
    gap: 25px;
}

.logo img {
    height: 160px;
}

.header-socials {
    display: flex;
    gap: 1.5rem;
}

.header-socials a {
    color: var(--primary);
    transition: color 0.3s ease, transform 0.3s ease;
    font-size: 1.4rem;
}

.header-socials a:hover {
    color: #fff;
    transform: scale(1.1);
}

/* --- Estilos do Menu Hambúrguer --- */
.menu-button {
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1002;
    padding: 0.5rem;
    color: var(--foreground);
}

.menu-button .icon-close {
    display: none;
}

#main-header.nav-open .menu-button .icon-close {
    display: block;
}

#main-header.nav-open .menu-button .icon-menu {
    display: none;
}

.nav-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(249, 249, 253, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 999;
}

#main-header.nav-open .nav-container {
    transform: translateX(0);
}

.nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 0;
    margin-bottom: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--foreground);
    font-weight: 500;
    font-size: 1.8rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links li {
    transform: translateX(-50px);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

#main-header.nav-open .nav-links li:nth-child(1) {
    transform: translateX(0);
    opacity: 1;
    transition-delay: 0.1s;
}

#main-header.nav-open .nav-links li:nth-child(2) {
    transform: translateX(0);
    opacity: 1;
    transition-delay: 0.2s;
}

#main-header.nav-open .nav-links li:nth-child(3) {
    transform: translateX(0);
    opacity: 1;
    transition-delay: 0.3s;
}

#main-header.nav-open .nav-links li:nth-child(4) {
    transform: translateX(0);
    opacity: 1;
    transition-delay: 0.4s;
}

#main-header.nav-open .nav-links li:nth-child(5) {
    transform: translateX(0);
    opacity: 1;
    transition-delay: 0.5s;
}

#main-header.nav-open .nav-links li:nth-child(6) {
    transform: translateX(0);
    opacity: 1;
    transition-delay: 0.6s;
}

#main-header.nav-open .nav-links li:nth-child(7) {
    transform: translateX(0);
    opacity: 1;
    transition-delay: 0.7s;
}

.menu-logo {
    height: 138px;
    margin-bottom: -1.5rem;
    transform: translateX(-50px);
    opacity: 0;
    transition: opacity 0.3s ease 0.7s, transform 0.3s ease 0.7s;
}

#main-header.nav-open .menu-logo {
    transform: translateX(0);
    opacity: 1;
}

.menu-socials {
    display: flex;
    gap: 2rem;
    transform: translateX(-50px);
    opacity: 0;
    transition: opacity 0.3s ease 0.8s, transform 0.3s ease 0.8s;
}

#main-header.nav-open .menu-socials {
    transform: translateX(0);
    opacity: 1;
}

.menu-socials a {
    color: var(--muted-foreground);
    font-size: 1.8rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.menu-socials a:hover {
    color: var(--primary);
    transform: scale(1.1);
}

/* --- Seções e Conteúdo --- */
#banner-section {
    width: 100vw;
    max-width: 100vw;
    padding: 0;
    margin: 0;
    position: relative;
    background: var(--background);
    overflow: hidden;
    padding-top: 100px; /* Espaço para o header fixo */
}

.section-spacer {
    height: 80px;
    background-color: var(--background);
    width: 100%;
}

/* --- Seção: SOBRE A CRIAR --- */
#about-criar {
    padding: 40px 5% 4rem 5%;
    background-color: var(--secondary);
    display: block;
}

.about-criar-title {
    text-align: center;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--primary-foreground);
    margin-bottom: 2.5rem;
    letter-spacing: -2px;
}

.about-criar-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.about-criar-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

.about-criar-text h2 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    color: var(--primary-foreground);
    margin-bottom: 1.5rem;
}

.about-criar-text p {
    font-size: 1.7rem;
    color: var(--background);
}

/* --- Seção: NOSSOS SERVIÇOS (com card flutuante) --- */
#about-agency {
    padding: 1.0rem 5%;
    background-color: var(--background);
}

.about-agency-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    position: relative;
    z-index: 1;
    background: var(--gradient-primary);
    padding: 4rem;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

.about-agency-text h2 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
    color: var(--primary-foreground);
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
}

.about-agency-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.agency-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.agency-item .agency-icons {
    height: 105px;
    width: auto;
    margin-bottom: -1.0rem;
}

.agency-item p {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-foreground);
    line-height: 1.3;
}

/* --- Seção HERO (PARCERIA) --- */
#hero {
    min-height: auto;
    display: flex;
    align-items: center;
    padding: 4rem 5%;
    background-color: var(--foreground);
    color: var(--foreground);
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
    padding-bottom: 0;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
    padding-bottom: 5rem;
    padding-top: 2rem;
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -1px;
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    color: var(--primary);
}

#hero .hero-text h1 {
    background: linear-gradient(90deg, #F357A8 0%, #F7971E 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    padding-bottom: 25px;
}

.hero-text h2,
.hero-text p {
    color: var(--background);
}

@media (max-width: 1024px) {
    .hero-text p{
margin-bottom: 15px;
}
.casting-title, .benefits-intro h2 , .clientes-title{
    padding-top: 20px !important;
    padding-bottom: 35px !important;
    font-size: 2.8rem !important;
}
}


.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 2rem;
}

.hero-stats>div {
    display: flex;
    flex-direction: column;
}

.hero-stats strong {
    font-size: 2rem;
    font-weight: 700;
    color: var(--background);
}

.hero-stats span {
    font-size: 1rem;
    color: var(--background);
}

.form-card {
    background: var(--muted);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    color: var(--foreground);
}

.form-card h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    color: var(--primary);
}

.form-group {
    margin-bottom: 1rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background-color: var(--background);
    color: var(--muted-foreground);
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input::placeholder {
    color: var(--muted-foreground);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(106, 13, 173, 0.2);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%235A5A72' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.5rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
}

.cta-button {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    background: var(--gradient-primary);
    color: var(--primary-foreground);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.3s, background-color 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: #5a0b94;
}

.error-message {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: none;
}

.form-group.error .error-message {
    display: block;
}

.form-group.error input,
.form-group.error select {
    border-color: #ef4444;
}

/* --- Demais Seções (Benefits, Footer, etc.) --- */
#benefits {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    background-color: var(--background);
}

.benefits-intro h2 {
    font-size: 2.0rem;
    font-weight: 700;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.2;
    color: var(--foreground);
}

.benefits-intro p {
    font-size: 1.1rem;
    color: var(--muted-foreground);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.5;
}

.benefit-card {
    background: var(--primary);
    padding: 2rem;
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid var(--border-color);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.benefit-card i {
    width: 48px;
    height: 48px;
    color: var(--primary-foreground);
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-foreground);
}

.benefit-card p {
    color: var(--primary-foreground);
}

#contact {
    background-color: var(--secondary) !important;
    color: var(--primary-foreground) !important;
    padding: 2rem 5%;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 3rem;
    flex-wrap: wrap;
}

.footer-left {
    flex-basis: 35%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
}

.footer-logo {
    height: 180px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-copyright {
    color: var(--primary-foreground);
    font-size: 0.9rem;
}

.footer-right {
    flex-basis: 60%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2.5rem;
}

.footer-contact-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-button,
.footer-button-secondary {
    text-decoration: none;
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.footer-button {
    background-color: var(--primary);
    color: var(--primary-foreground);
    border-color: var(--primary);
}

.footer-button:hover {
    background-color: transparent;
    color: var(--primary);
}

.footer-button-secondary {
    background-color: transparent;
    border: 2px solid var(--primary-foreground);
    color: var(--primary-foreground);
}

.footer-button-secondary:hover {
    background-color: var(--muted-foreground);
    color: var(--muted);
}

.footer-bottom-links {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    order: 1;
    text-align: left;
}

.footer-social-icons {
    display: flex;
    gap: 1.5rem;
    order: 2;
}

.footer-social-icons a {
    color: var(--primary-foreground);
    font-size: 1.4rem;
    transition: all 0.3s ease;
}

.footer-social-icons a:hover {
    color: var(--primary);
    transform: scale(1.1);
}

.footer-privacy-link {
    color: var(--primary-foreground);
    text-decoration: underline;
    transition: color 0.3s ease;
    order: 3;
}

.footer-privacy-link:hover {
    color: var(--primary);
}

#toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}

.toast {
    background-color: #333;
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 10px;
    opacity: 0;
    transition: opacity 0.5s, transform 0.5s;
    transform: translateX(100%);
}

.toast.show {
    opacity: 1;
    transform: translateX(0);
}

.toast.success {
    background-color: #4caf50;
}

.toast.error {
    background-color: #f44336;
}

#thank-you-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 120px 5% 4rem;
    background-color: var(--background);
}

.thank-you-card {
    background: var(--muted);
    padding: 0;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    max-width: 1000px;
    width: 100%;
    border: 1px solid var(--border-color);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.thank-you-banner {
    width: 100%;
}

.thank-you-banner img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 2rem;
}

.back-to-home-button {
    text-decoration: none;
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    background-color: var(--primary);
    color: var(--primary-foreground);
    border: 2px solid var(--primary);
    margin-bottom: 2rem;
}

.back-to-home-button:hover {
    background-color: transparent;
    color: var(--primary);
}

/* --- AJUSTE PARA ROLAGEM COM HEADER FIXO --- */
#about-criar,
#about-agency,
#casting,
#benefits,
#hero,
#contact {
    scroll-margin-top: 100px !important;
}

/* --- Media Queries Gerais --- */
@media (max-width: 1024px) {    
    .logo img {
        height: 140px;
    }

    .about-criar-title {
        margin-bottom: 1rem;
        font-size: 2.5rem;
    }

    .hero-content,
    .about-criar-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 5px;
    }

    .hero-stats {
        justify-content: center;
        margin-bottom: 25px;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    #about-agency,
    #about-criar {
        padding: 2rem 5%;
    }

    #about-criar {
        padding-top: 40px;
    }

    #about-agency .about-agency-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    #about-agency .about-agency-text h2,
    .about-criar-text h2 {
        font-size: 2.8rem;
    }

    #about-agency .about-agency-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    #about-agency .agency-item p,
    .about-criar-text p {
        font-size: 1rem;
    }

    .about-criar-image {
        order: -1;
    }
}

@media (max-width: 992px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-left,
    .footer-right {
        flex-basis: 100%;
        align-items: center;
        width: 100%;
    }

    .footer-left {
        margin-bottom: 2rem;
    }

    .footer-contact-group {
        justify-content: center;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer-logo {
        height: 135px;
        margin-bottom: 1rem;
    }

    .casting-title {
        font-size: 2.5rem;
        padding-top: 0px !important;
        padding-bottom: 42px !important;
    }
    
}

@media (max-width: 768px) {
    #main-header nav {
        height: 60px;
    }

    #about-criar,
    #about-agency,
    #creators,
    #benefits,
    #hero,
    #contact {
        scroll-margin-top: 60px;
    }

    #about-criar {
        padding-top: 40px;
    }

    .thank-you-card {
        max-width: 90%;
    }

    .thank-you-banner img {
        margin-bottom: 1.5rem;
    }

    .back-to-home-button {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .logo img {
        height: 110px;
    }

    .navbar-left {
        gap: 10px;
    }

    .header-socials {
        gap: 1rem;
    }

    .header-socials a {
        font-size: 1.2rem;
    }

    #main-header.nav-open .navbar-left .logo,
    #main-header.nav-open .header-socials {
        display: none;
    }

    .hero-text {
        text-align: center; /* ADICIONADO PARA GARANTIR CENTRALIZAÇÃO */
    }

    .hero-text h1 {
        font-size: 1.9rem;
    }

    #about-agency,
    #about-criar {
        padding-left: 5%;
        padding-right: 5%;
    }

    #about-agency .about-agency-text h2,
    .about-criar-text h2 {
        font-size: 2.2rem;
    }

    #about-agency .about-agency-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .agency-item i,
    .agency-item .agency-icons {
        font-size: 3rem;
        height: 130px;
        margin-bottom: -2.0rem;
    }

    .agency-item p {
        font-size: 1rem;
    }

    .section-spacer {
        height: 50px;
    }

    .footer-bottom-links {
        border-top: 1px solid var(--border-color);
        padding-top: 1.5rem;
        margin-top: 1rem;
    }

    .benefits-grid {        
        grid-template-columns: 1fr;
        padding: 0;
    }

    .casting-title,
    .benefits-intro,
    .clientes-title{
        font-size: 2.5rem !important;
    }
    
    /* --- INÍCIO: AJUSTES CARROSSEL BENEFITS RESPONSIVO --- */
    .embla .embla__controls {
        gap: 1rem; /* Reduz o espaçamento para telas menores */
    }

    .embla .embla__button {
        position: static; /* Tira o posicionamento absoluto */
        transform: none; /* Remove a translação vertical */
        background: transparent; /* Remove o fundo branco para integrar melhor */
        color: var(--foreground); /* Cor que combine com o texto */
        box-shadow: none; /* Remove a sombra */
        padding: 0; /* Remove padding extra */
        font-size: 2rem; /* Ajusta o tamanho do ícone */
    }

    .embla .embla__button:disabled {
        opacity: 0.4;
    }
    /* --- FIM: AJUSTES CARROSSEL BENEFITS RESPONSIVO --- */
}

#creators {
    padding: 4rem 5%;
    background-color: var(--background);
}

@media (max-width: 1024px) {
    .creators-gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }

    .creators-gallery-title {
        font-size: 2.8rem;
    }

    .creator-card-info h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    #creators {
        padding: 4rem 5%;
    }

    .creators-gallery-title {
        font-size: 2.2rem;
    }

    .creators-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .creator-card-info h3 {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .creators-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* --- Modal --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    background-color: rgba(25, 25, 46, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.modal-overlay:not(.hidden) {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    position: relative;
    background-color: var(--muted);
    border-radius: 24px;
    padding: 2rem;
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.modal-overlay:not(.hidden) .modal-content {
    transform: scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--background);
    color: var(--foreground);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.modal-close-btn:hover {
    background: var(--primary);
    color: var(--primary-foreground);
    transform: rotate(90deg);
}

.modal-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 2.5rem;
    align-items: center;
}

.modal-media-container {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background-color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-media-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    width: 80px;
    height: 80px;
    background-color: rgba(106, 13, 173, 0.9);
    color: var(--primary-foreground);
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.modal-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background-color: var(--primary);
}

.modal-play-btn i {
    width: 40px;
    height: 40px;
    margin-left: 5px;
}

.modal-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.instagram-media {
    max-height: 100% !important;
    margin: auto !important;
}

.modal-media-container.video-active #modal-img,
.modal-media-container.video-active #modal-play-btn {
    display: none;
}

.modal-info h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary);
}

/* --- Páginas de Detalhe --- */
#influencer-detail-section {
    padding: 140px 5% 4rem;
    background-color: var(--section-purple-bg);
}

.influencer-detail-container {
    max-width: 1100px;
    margin: 0 auto;
}

.back-to-gallery-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--muted-foreground);
    text-decoration: none;
    margin-bottom: 2rem;
    transition: color 0.3s ease;
}

.back-to-gallery-btn:hover {
    color: var(--primary);
}

.detail-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 3rem;
    align-items: center;
}

.detail-media-content {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
}

.detail-media-content img {
    width: 100%;
    height: auto;
    display: block;
}

.detail-info h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.detail-info p {
    color: var(--muted-foreground);
    font-size: 1.2rem;
    line-height: 1.7;
}

.detail-socials {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.detail-socials a {
    color: var(--muted-foreground);
    font-size: 2rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.detail-socials a:hover {
    color: var(--primary);
    transform: scale(1.1);
}

/* --- Seções Casting e Clientes --- */
.casting-section,
.clientes-section,
#casting {
    background: var(--background);
}

.casting-gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    justify-items: center;
    align-items: start;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 40px auto;
    box-sizing: border-box;
    grid-row-gap: 40px;
}

.casting-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card-image-flip {
    position: relative;
    width: 140px;
    height: 140px;
    perspective: 900px;
    margin-bottom: 12px;
    transition: transform 0.9s cubic-bezier(.25, .8, .25, 1);
    transform-style: preserve-3d;
}

.casting-card:hover .card-image-flip {
    transform: rotateY(180deg);
}

.card-image-front,
.card-image-back {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 16px;
    overflow: hidden;
    backface-visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-image-front {
    z-index: 2;
    background: transparent;
}

.card-image-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

.card-image-back {
    background: var(--secondary);
    color: var(--primary-foreground);
    transform: rotateY(180deg);
    z-index: 1;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    padding: 0 8px;
}

.card-back-text {
    width: 100%;
    text-align: center;
    word-break: break-word;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100%;
}

.casting-card-name {
    font-weight: 900 !important;
    margin-bottom: 4px;
    margin-top: 2px;
    min-height: 28px;
    line-height: 1.2;
    text-align: center;
    padding: 0 2px;
    max-width: 175px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    box-sizing: border-box;
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    -webkit-text-fill-color: initial;
    color: var(--primary);
    font-size: 1.1rem;
}

.casting-card-btn {
    background: var(--secondary) !important;
    color: var(--primary-foreground) !important;
    border: none;
    border-radius: 8px;
    padding: 8px 0;
    width: 90px !important;
    min-width: 0 !important;
    max-width: 100px !important;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    margin-top: 2px;
    margin-bottom: 0;
    transition: background 0.2s, color 0.2s;
    text-decoration: none;
    display: block;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
    margin-left: auto;
    margin-right: auto;
}

.casting-card-btn:hover {
    background: #2a2a4a !important;
}

.casting-section,
#casting {
    margin-top: 0;
    padding-bottom: 35px;
}

.casting-title,
.clientes-title,
.benefits-intro {
    text-align: center;
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: -3px;
    text-transform: lowercase;
    line-height: 1.1;
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    color: var(--foreground);
    padding-bottom: 10px;
    padding-top: 15px;
}

.casting-title{
    padding-top: 35px ;
    padding-bottom: 50px ;
}

.clientes-title {
    margin-top: 20px;
    margin-bottom: 15px;
}

.clientes-gallery {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    justify-items: center;
    align-items: center;
    margin-top: 25px;
    width: 100%;
    box-sizing: border-box;
    padding-right:100px;
    padding-left: 100px;
}

.clientes-gallery img {
    height: 70px;
    max-width: 180px;
    object-fit: contain;
    background: var(--background);
    border-radius: 8px;
    padding: 8px 16px;
    box-shadow: none;
    transition: transform 0.2s;
}

.clientes-gallery img:hover {
    transform: scale(1.07);
}

@media (max-width: 480px) {
    .clientes-gallery {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
        padding: 0 8px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .embla__slide{
        flex: 0 0 100% !important;
    }

}

@media (min-width: 481px) and (max-width: 900px){
    .embla:not(.embla-banner) .embla__slide {
        flex: 0 0 50% !important;
    }
    
}
@media (min-width: 320px) and (max-width: 900px){
    #banner-section {
        padding-top: 49px;
    }

}
@media (max-width: 375px) {
    .clientes-gallery {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }
}

@media (min-width: 481px) and (max-width: 900px) {

    .clientes-gallery {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 16px !important;
    }
}

@media (max-width: 500px) {
    #main-header nav {
        height: 60px !important;
        padding: 0 3%;
    }

    .casting-gallery-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 12px !important;
        padding: 0 8px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .casting-card,
    .card-image-flip {
        width: 100% !important;
        max-width: none !important;
        height: auto !important;
    }

    .card-image-flip {
        aspect-ratio: 1 / 1;
        margin-bottom: 8px !important;
    }

    .card-image-front,
    .card-image-back,
    .card-image-front img {
        width: 100% !important;
        height: 100% !important;
        min-width: 0 !important;
        max-width: none !important;
        object-fit: cover;
    }

    .casting-card-name,
    .casting-card-btn {
        width: 100% !important;
        max-width: none !important;
        min-width: 0 !important;
    }

    .casting-card-name {
        font-size: 1rem !important;
        margin-top: 4px;
        margin-bottom: 8px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .casting-card-btn {
        font-size: 0.9rem !important;
        padding: 8px 0;
    }

    .logo img {
        height: 80px !important;
        margin-top: 4px !important;
    }

    .header-socials {
        gap: 1.2rem !important;
    }

    .header-socials a {
        font-size: 1rem !important;
    }
}

@media (min-width: 501px) and (max-width: 900px) {

    .casting-gallery-grid {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 24px 16px !important;
        padding: 0 24px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .casting-card,
    .card-image-flip {
        width: 100% !important;
        max-width: none !important;
        height: auto !important;
    }

    .card-image-flip {
        aspect-ratio: 1 / 1;
        margin-bottom: 8px !important;
    }

    .card-image-front,
    .card-image-back,
    .card-image-front img {
        width: 100% !important;
        height: 100% !important;
        min-width: 0 !important;
        max-width: none !important;
        object-fit: cover;
    }

    .casting-card-name,
    .casting-card-btn {
        width: 100% !important;
        max-width: none !important;
        min-width: 0 !important;
    }

    .casting-card-name {
        font-size: 20px !important;
        margin-top: 4px;
        margin-bottom: 8px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .casting-card-btn {
        font-size: 15px !important;
        padding: 9px 0;
    }

      .embla-services .embla__slide {
    flex: 0 0 32% !important;
    max-width: 90vw !important;
    height: 270px !important;
  }
  .embla-services .embla__container {
    gap: 1.5rem;
  }
}

@media (min-width: 901px) {
    .casting-gallery-grid {
        justify-items: center;
    }

    .casting-card {
        width: 150px !important;
        height: auto !important;
    }

    .card-image-flip {
        width: 140px !important;
        height: 140px !important;
        margin: 0 auto !important;
    }

    .casting-card-name {
        text-transform: uppercase !important;
        margin-top: 15px !important;
        margin-bottom: 10px !important;
    }

    .casting-card-btn {
        width: 140px !important;
    }
}

/* --- Ajustes Finais e Cores --- */
.menu-button {
    color: #fff !important;
}

.menu-button:hover {
    color: var(--primary) !important;
}

.header-socials a {
    color: #fff;
    transition: color 0.3s ease, transform 0.3s ease;
    font-size: 1.4rem;
}

.header-socials a:hover {
    color: var(--primary);
    transform: scale(1.1);
}

.about-agency-text h2,
.casting-title,
.clientes-title,
.benefits-intro h2,
#about-agency h2,
#benefits h2,
#clientes h2 {
    color: var(--foreground) !important;
    background: none !important;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
}

.casting-card-btn {
    width: 90px !important;
    min-width: 0 !important;
    max-width: 100px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.casting-card-name {
    font-weight: 900 !important;
}

.benefits-grid .benefit-card:nth-child(1) {
    background: linear-gradient(135deg, #7B2FF2 0%, #F357A8 100%);
    color: #fff;
}

.benefits-grid .benefit-card:nth-child(2) {
    background: linear-gradient(135deg, #43CEA2 0%, #185A9D 100%);
    color: #fff;
}

.benefits-grid .benefit-card:nth-child(3) {
    background: linear-gradient(135deg, #f71ede 0%, #c2af5a 100%);
    color: #fff;
}

.benefits-grid .benefit-card:nth-child(4) {
    background: linear-gradient(135deg, #045325 0%, #e0e71f 100%);
    color: #fff;
}

.benefits-grid .benefit-card:nth-child(5) {
    background: linear-gradient(135deg, #5a0122 0%, #602749 100%);
    color: #fff;
}

.benefits-grid .benefit-card:nth-child(6) {
    background: linear-gradient(135deg, #0e0249 0%, #a006a3 100%);
    color: #fff;
}

.clientes-section,
#clientes {
    background: var(--background) !important;
    padding-bottom: 70px;
}

section,
#about-agency,
#benefits,
#casting,
#clientes,
#hero,
#creators {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0px;
}

#about-criar {
    padding-bottom: 4rem;
    padding-left: 5%;
    padding-right: 5%;
}

#about-agency,
#benefits,
#hero,
#creators {
    padding-left: 5%;
    padding-right: 5%;
}

/* --- Embla Carousel (NÃO BANNER) --- */
.embla {
    max-width: 1500px;
    margin: 0 auto;
    position: relative;
    padding: 2rem 0;
}

.embla__viewport {
    overflow: hidden;
    width: 100%;
}

.embla__container {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.embla .embla__slides {
    flex: 0 0 32%;
    min-width: 0;
    height: 370px;
    background: #adc6fa;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #222;
    font-size: 2.5rem;
    font-weight: 700;
    box-shadow: none;
    margin: 0;
    transition: box-shadow 0.2s, transform 0.2s;
}

/* Desktop: 3 cards */
.embla-services .embla__slides {
    flex: 0 0 33.3333% !important;
    max-width: 320px !important;
    height: 400px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 16px rgba(25,25,46,0.07);
    padding: 0 !important;
    margin: 0 auto !important;
    transition: box-shadow 0.2s, transform 0.2s;
}

.embla-services .embla__slides img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 20px;
    background: #fff;
    display: block;
}

/* Tablet: 2 cards */
@media (min-width: 670px) and (max-width: 1024px){
    .embla-services .embla__slides {
        flex: 0 0 33% !important;
        max-width: 90vw !important;
        height: 290px !important;
    }
    .embla-services .embla__slides img {
        border-radius: 16px;
    }
}
@media (min-width: 321px) and (max-width: 376px){
    .embla-services .embla__slides {
        flex: 0 0 66% !important;
        max-width: 90vw !important;
        height: 299px !important;
    }
    .embla-services .embla__slides img {
        border-radius: 16px;
    }
}

@media (min-width: 376px) and (max-width: 659px){
    .embla-services .embla__slides {
        flex: 0 0 66% !important;
        max-width: 90vw !important;
        height: 299px !important;
    }
    .embla-services .embla__slides img {
        border-radius: 16px;
    }
}

/* 3 cards: telas grandes (acima de 900px) */
@media (min-width: 901px) {
  .embla-services .embla__slides {
    flex: 0 0 33.3333% !important;
    max-width: 320px !important;
    height: 400px !important;
  }
  .embla-services .embla__container {
    gap: 2rem;
  }
}

/* ====================================================== */
/* ========= NOVOS ESTILOS (SWIPER BANNER) ============== */
/* ====================================================== */

.swiper-banner {
    width: 100%;
    height: auto; /* Altura será definida pela proporção do slide */
    position: relative;
    overflow: hidden;
    background-color: var(--secondary); /* Cor de fundo para evitar flash */
}

.swiper-banner .swiper-wrapper {
    /* Estilos padrão do Swiper geralmente cuidam disso */
    align-items: stretch; /* Garante que slides ocupem altura total se variável */
}

.swiper-banner .swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: auto; /* Altura será definida pelo aspect-ratio */
    position: relative;
    background-color: var(--secondary); /* Cor de fundo para mascarar */
    overflow: hidden;

    /* Define a proporção PADRÃO (Desktop) */
    /* SUBSTITUA 1920 / 700 pela proporção real da sua imagem DESKTOP (largura / altura) */
    aspect-ratio: 1920 / 800; 

    /* Mantém aceleração */
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    will-change: transform;
    transform: translateZ(0);

    /* Remove padding que pode ter vindo de antes */
    padding: 0; 
}

.swiper-banner .swiper-slide-img {
    display: block; /* Garante que não haja espaço extra abaixo */
    width: 100%;
    height: 100%; /* Ocupa 100% da altura do slide (definida pelo aspect-ratio) */
    object-fit: cover; /* Cobre a área do slide */
    object-position: center; /* Centraliza a imagem no corte, se houver */
    position: absolute; /* Para funcionar com object-fit em alguns casos */
    top: 0;
    left: 0;

    /* Mantém aceleração */
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    will-change: transform, opacity;
    transform: translateZ(0);

    /* REMOVER aspect-ratio daqui se houver */
}

.banner-content {
    position: relative; /* Para ficar acima da imagem */
    z-index: 1;
    color: white; /* Cor do texto */
    text-align: center;
    padding: 20px;
    /* Adicione mais estilos para o seu conteúdo aqui, se necessário */
}

.swiper-banner .swiper-slide img {
    width: 100%;
    height: 100%;
    object-position: center; /* Centraliza a imagem no container */
}

.swiper-banner .swiper-slide {
    background-size: contain; /* Garante que a imagem inteira seja visível */
    background-position: center center; /* Centraliza a imagem no container */
    background-repeat: no-repeat; /* Evita repetição se a imagem não preencher */
}

/* --- Estilização dos Controles Swiper (para imitar Embla) --- */

/* Paginação (Dots) */
.swiper-banner .swiper-pagination {
    position: absolute;
    bottom: 25px; /* Ajuste esta distância da parte inferior do banner */
    left: 50%; /* Posiciona o início do container no meio */
    transform: translateX(-50%); /* Centraliza o container horizontalmente */
    width: auto !important; /* Garante que a largura se ajuste aos bullets */
    z-index: 10; /* Garante que fique acima dos slides */
    display: flex; /* Alinha os bullets horizontalmente */
    justify-content: center; /* Centraliza os bullets dentro do container */
    align-items: center; /* Alinha verticalmente os bullets */
    padding: 5px; /* Pequeno padding opcional */
}

.swiper-banner .swiper-pagination-bullet {
    width: 10px; /* Largura/Altura do círculo inativo */
    height: 10px;
    background-color: #A0A0A0; /* Cor cinza para inativos */
    opacity: 1; /* Garante visibilidade total */
    border-radius: 50%; /* Faz ser um círculo */
    margin: 0 5px !important; /* Espaçamento horizontal entre bullets (importante para sobrescrever Swiper) */
    cursor: pointer;
    transition: width 0.3s ease, background-color 0.3s ease, border-radius 0.3s ease; /* Transição suave */
    flex-shrink: 0; /* Impede que os bullets encolham */
    box-shadow: none; /* Remove qualquer sombra padrão */
    border: none; /* Remove qualquer borda padrão */
}

.swiper-banner .swiper-pagination-bullet-active {
    width: 35px; /* Largura maior para formar a pílula */
    background-color: #FFFFFF; /* Cor branca para o ativo */
    border-radius: 10px; /* Cantos arredondados para formar a pílula */
}

/* Navegação (Setas) */
.swiper-button-prev,
.swiper-button-next {
    color: white; /* Cor da seta */
    width: 40px; /* Largura da área do botão */
    height: 40px; /* Altura da área do botão */
    background: transparent; /* MUITO IMPORTANTE: Remove o fundo dos botões */
    border-radius: 50%; /* Se você tinha um círculo antes, isso não terá efeito sem um background-color */
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px; /* Tamanho da seta */
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    color: var(--foreground);
}

.swiper-banner .swiper-button-prev {
    left: 1.5rem; /* Posição da seta direita */

}

.swiper-banner .swiper-button-next {
    right: 3rem; /* Posição da seta direita */
}

/* Remove as setas padrão do Swiper (feitas com ::after) */
.swiper-banner .swiper-button-prev::after,
.swiper-banner .swiper-button-next::after {
    content: ''; /* Remove o conteúdo padrão (seta) */
    display: none; /* Esconde completamente */
}


/* --- Responsividade do Swiper Banner (COM AJUSTE DE ALTURA) --- */
@media (max-width: 900px) {
     #banner-section {
        padding-top: 60px; /* Mantém ajuste para header mobile (que tem 60px) */
    }

    /* Define a altura do banner para ser 100% da altura da tela (100vh)
      MENOS a altura do header mobile (60px).
    */
    .swiper-banner {
        height: calc(100vh - 60px);
    }
    
    /* REMOVEMOS as regras de aspect-ratio do .swiper-slide e .swiper-slide-img */
    /* que estavam aqui. */

    /* Ajustes de controles (mantidos) */
    .swiper-banner .swiper-button-prev,
    .swiper-banner .swiper-button-next {
        width: 44px;
        height: 44px;
    }
    .swiper-banner .swiper-pagination {
        bottom: 20px; 
        gap: 0.8rem; 
    }
    .swiper-banner .swiper-pagination-bullet {
        width: 9px;
        height: 9px;
        margin: 0 4px !important;
     }
    .swiper-banner .swiper-pagination-bullet-active {
        width: 30px;
        border-radius: 8px;
    }
}

@media (max-width: 600px) {
    /* Ajustes de controles (mantidos) */
    .swiper-banner .swiper-button-prev,
    .swiper-banner .swiper-button-next {
        width: 40px; 
        height: 40px;
    }
    .swiper-banner .swiper-pagination {
        bottom: 15px; 
        gap: 0.6rem;
    }
    .swiper-banner .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
         margin: 0 3px !important;
    }
    .swiper-banner .swiper-pagination-bullet-active {
        width: 25px;
        border-radius: 6px;
    }
}



@media (max-width: 360px) {
    #hero {
        padding: 2rem 2% !important;
    }
    .hero-content {
        grid-template-columns: 1fr !important;
        gap: 0.5rem !important;
        padding: 0 !important;
        text-align: center !important;
        justify-items: center !important;
    }
    .hero-text {
        text-align: center !important;
        width: 100% !important;
    }
}

.embla:not(.embla-banner) .embla__controls {
    position: static !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    margin-top: 2rem !important;
    gap: 2rem !important;
    width: 100%;
}

.embla:not(.embla-banner) .embla__button {
    position: static !important;
    top: unset !important;
    left: unset !important;
    right: unset !important;
    transform: none !important;
    background: var(--secondary) !important;
    color: var(--primary-foreground) !important;
    font-size: 2rem !important;
    padding: 0.5rem 1.2rem !important;
    border-radius: 50% !important;
    margin: 0 0.5rem !important;
    box-shadow: var(--shadow-md) !important;
    border: none !important;
    transition: background 0.2s;
    z-index: 1 !important;
}

.embla:not(.embla-banner) .embla__button:disabled {
    opacity: 0.3 !important;
    cursor: not-allowed !important;
}

.embla:not(.embla-banner) .embla__dots {
    display: flex !important;
    gap: 1rem !important;
    align-items: center !important;
    justify-content: center !important;
    margin-top: 1rem !important;
}

.embla:not(.embla-banner) .embla__dot {
    width: 14px !important;
    height: 14px !important;
    border-radius: 50% !important;
    background: #ccc !important;
    opacity: 0.7 !important;
    border: none !important;
    cursor: pointer !important;
    transition: opacity 0.2s, background 0.2s, transform 0.2s;
}

.embla:not(.embla-banner) .embla__dot.is-selected {
    background: var(--secondary) !important;
    opacity: 1 !important;
    transform: scale(1.2);
}    

.criar-banner-section {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    padding: 60px 0 24px 0;
    margin: 0;
}
.criar-propaganda-banner{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    padding: 60px 0 60px 0 !important;
    margin: 0;
}


.criar-banner-content {
    background: #fff;
    border-radius: 0;
    box-shadow: 0 8px 32px rgba(25,25,46,0.10), 0 1.5px 8px rgba(106,13,173,0.07);
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1100px;
    width: 100%;
}


.criar-banner-img {
    width: 100%;
    max-width: 1100px;
    height: auto;
    display: block;
    border-radius: 0;
    box-shadow: none;
    background: #fff;
    object-fit: contain;
}

@media (max-width: 900px) {
    .criar-banner-content, .criar-banner-img {
        max-width: 98vw;
        border-radius: 0;
    }

.criar-banner-section {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    padding: 32px 15px 32px 15px;
    margin: 0;
}
.criar-propaganda-banner{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    padding: 32px 15px 32px 15px !important;
    margin: 0;
}


}

#hero,
#about-criar {
    position: relative;
    z-index: 1;
    background-color: var(--foreground);
    /* Fundo com bolinhas pequenas, lineares e bem suaves */
    background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='2' cy='2' r='1.2' fill='%23fff' fill-opacity='0.07'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 32px 32px;
}
#about-criar {
    background-color: var(--secondary);
}

h1, h2, h3, .about-criar-title, .casting-title, .clientes-title, .benefits-intro h2 {
    font-family: 'Montserrat', 'Inter', Arial, sans-serif !important;
    font-weight: 400 !important; /* Mudado de 900 para 400 (normal) */
    letter-spacing: -1px;
}

@media (max-width: 900px) {
    .embla-services .embla__slide {
        flex: 0 0 60% !important;
        max-width: 90vw !important;
        height: 220px !important;
    }
}

/* 1 card: telas pequenas (até 425px) */
@media (max-width: 425px) {
  .embla-services .embla__slide {
    flex: 0 0 100% !important;
    max-width: 128vw !important;
    height: 250px !important;
  }
  .embla-services .embla__container {
    gap: 1rem;
  }
}

@media (max-width: 320px) and (max-width: 425px) {
    .embla-services .embla__slides {
        flex: 0 0 100% !important;
        max-width: 112vw !important;
        height: 370px !important;
}
}

/* 2 cards: telas médias (426px até 900px) */
@media (min-width: 426px) and (max-width: 900px) {
  .embla-services .embla__slide {
        flex: 0 0 48% !important;
        max-width: 90vw !important;
        height: 460px !important;
  }
  .embla-services .embla__container {
    gap: 1.5rem;
  }
}

/* 3 cards: telas grandes (acima de 900px) */
@media (min-width: 901px) {
  .embla-services .embla__slide {
    flex: 0 0 33.3333% !important;
    max-width: 320px !important;
    height: 400px !important;
  }
  .embla-services .embla__container {
    gap: 2rem;
  }
}
#main-header.nav-open .menu-button .icon-close {
    color: var(--foreground) !important;
}
#main-header.nav-open .menu-button .icon-close:hover {
    color: var(--primary) !important;
}

@media (min-width: 480px) and (max-width: 900px) {
    .clientes-gallery {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 16px !important;
        padding: 0 20px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .clientes-gallery img {
        height: 60px !important;
        max-width: 100% !important;
        object-fit: contain;
        background: var(--background);
        border-radius: 8px;
        padding: 8px 12px !important;
    }
}
/* --- Responsividade dos Controles e DA IMAGEM do Banner --- */


@media (max-width: 900px) {
    .embla-banner .embla__slide__img {
        aspect-ratio: 1080 / 1889;
        padding-top: 10px;
        /* Novo aspect-ratio para o banner mobile */
    }

    .embla-banner .embla__button {
        font-size: 2.2rem;
        padding: 0.5rem 1.2rem;
    }

    .embla-banner .embla__dots {
        bottom: 1.2rem;
        gap: 1rem;
    }

    .embla-banner .embla__dot {
        width: 14px;
        height: 14px;
    }
}

@media (max-width: 600px) {
    .embla-banner .embla__button {
        font-size: 1.5rem;
        padding: 0.3rem 0.7rem;
    }

    .embla-banner .embla__dots {
        bottom: 3rem;
        gap: 0.8rem;
    }

    .embla-banner .embla__dot {
        width: 12px;
        height: 12px;
    }
}
@media (max-width: 360px) {
    #hero {
        padding: 2rem 2% !important;
    }
    .hero-content {
        grid-template-columns: 1fr !important;
        gap: 0.5rem !important;
        padding: 0 !important;
        text-align: center !important;
        justify-items: center !important;
    }
    .hero-text {
        text-align: center !important;
        width: 100% !important;
    }
}

.embla:not(.embla-banner) .embla__controls {
    position: static !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    margin-top: 2rem !important;
    gap: 2rem !important;
    width: 100%;
}

.embla:not(.embla-banner) .embla__button {
    position: static !important;
    top: unset !important;
    left: unset !important;
    right: unset !important;
    transform: none !important;
    background: var(--secondary) !important;
    color: var(--primary-foreground) !important;
    font-size: 2rem !important;
    padding: 0.5rem 1.2rem !important;
    border-radius: 50% !important;
    margin: 0 0.5rem !important;
    box-shadow: var(--shadow-md) !important;
    border: none !important;
    transition: background 0.2s;
    z-index: 1 !important;
}

.embla:not(.embla-banner) .embla__button:disabled {
    opacity: 0.3 !important;
    cursor: not-allowed !important;
}

.embla:not(.embla-banner) .embla__dots {
    display: flex !important;
    gap: 1rem !important;
    align-items: center !important;
    justify-content: center !important;
    margin-top: 1rem !important;
}

.embla:not(.embla-banner) .embla__dot {
    width: 14px !important;
    height: 14px !important;
    border-radius: 50% !important;
    background: #ccc !important;
    opacity: 0.7 !important;
    border: none !important;
    cursor: pointer !important;
    transition: opacity 0.2s, background 0.2s, transform 0.2s;
}

.embla:not(.embla-banner) .embla__dot.is-selected {
    background: var(--secondary) !important;
    opacity: 1 !important;
    transform: scale(1.2);
}    

.criar-banner-section {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    padding: 60px 0 24px 0;
    margin: 0;
}
.criar-propaganda-banner{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    padding: 60px 0 60px 0 !important;
    margin: 0;
}


.criar-banner-content {
    background: #fff;
    border-radius: 0;
    box-shadow: 0 8px 32px rgba(25,25,46,0.10), 0 1.5px 8px rgba(106,13,173,0.07);
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1100px;
    width: 100%;
}


.criar-banner-img {
    width: 100%;
    max-width: 1100px;
    height: auto;
    display: block;
    border-radius: 0;
    box-shadow: none;
    background: #fff;
    object-fit: contain;
}

@media (max-width: 900px) {
    .criar-banner-content, .criar-banner-img {
        max-width: 98vw;
        border-radius: 0;
    }

.criar-banner-section {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    padding: 32px 15px 32px 15px;
    margin: 0;
}
.criar-propaganda-banner{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    padding: 32px 15px 32px 15px !important;
    margin: 0;
}


}

#hero,
#about-criar {
    position: relative;
    z-index: 1;
    background-color: var(--foreground);
    /* Fundo com bolinhas pequenas, lineares e bem suaves */
    background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='2' cy='2' r='1.2' fill='%23fff' fill-opacity='0.07'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 32px 32px;
}
#about-criar {
    background-color: var(--secondary);
}

h1, h2, h3, .about-criar-title, .casting-title, .clientes-title, .benefits-intro h2 {
    font-family: 'Montserrat', 'Inter', Arial, sans-serif !important;
    font-weight: 400 !important; /* Mudado de 900 para 400 (normal) */
    letter-spacing: -1px;
}

@media (max-width: 900px) {
    .embla-services .embla__slide {
        flex: 0 0 60% !important;
        max-width: 90vw !important;
        height: 220px !important;
    }
}

/* 1 card: telas pequenas (até 425px) */
@media (max-width: 425px) {
  .embla-services .embla__slide {
    flex: 0 0 100% !important;
    max-width: 128vw !important;
    height: 250px !important;
  }
  .embla-services .embla__container {
    gap: 1rem;
  }
}


/* 3 cards: telas grandes (acima de 900px) */
@media (min-width: 901px) {
  .embla-services .embla__slide {
    flex: 0 0 33.3333% !important;
    max-width: 320px !important;
    height: 400px !important;
  }
  .embla-services .embla__container {
    gap: 2rem;
  }
}
#main-header.nav-open .menu-button .icon-close {
    color: var(--foreground) !important;
}
#main-header.nav-open .menu-button .icon-close:hover {
    color: var(--primary) !important;
}

@media (min-width: 480px) and (max-width: 900px) {
    .clientes-gallery {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 16px !important;
        padding: 0 20px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .clientes-gallery img {
        height: 60px !important;
        max-width: 100% !important;
        object-fit: contain;
        background: var(--background);
        border-radius: 8px;
        padding: 8px 12px !important;
    }
}