/* 
   Play Show - Estilo Principal
   Desenvolvido para a agência digital especializada em artistas musicais
*/

/* ===== RESET E BASE ===== */
:root {
    /* Cores Primárias (do logotipo) */
    --color-yellow: #FFA500;
    --color-orange: #FF4500;
    --color-red: #FF1493;
    --color-purple: #8A2BE2;
    
    /* Cores Secundárias */
    --color-white: #FFFFFF;
    --color-black: #121212;
    --color-dark-gray: #333333;
    --color-light-gray: #F5F5F5;
    --color-medium-gray: #E0E0E0;
    
    /* Gradientes */
    --gradient-primary: linear-gradient(90deg, var(--color-yellow) 0%, var(--color-orange) 33%, var(--color-red) 66%, var(--color-purple) 100%);
    --gradient-reversed: linear-gradient(90deg, var(--color-purple) 0%, var(--color-red) 33%, var(--color-orange) 66%, var(--color-yellow) 100%);
    
    /* Fontes */
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Roboto', sans-serif;
    
    /* Tamanhos */
    --container-width: 1200px;
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-dark-gray);
    background-color: var(--color-white);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: var(--color-purple);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--color-red);
}

ul {
    list-style: none;
}

/* ===== TIPOGRAFIA ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--color-black);
}

h1 {
    font-size: 3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

h2 {
    font-size: 2.5rem;
    position: relative;
}

h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    margin-top: 15px;
    border-radius: 2px;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 15px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2:after {
    margin: 15px auto 0;
}

/* ===== BOTÕES ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    outline: none;
}

.btn i {
    margin-right: 8px;
    font-size: 18px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(255, 20, 147, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 20, 147, 0.4);
    color: var(--color-white);
}

.btn-secondary {
    background-color: var(--color-white);
    color: var(--color-black);
    border: 2px solid var(--color-medium-gray);
}

.btn-secondary:hover {
    background-color: var(--color-light-gray);
    color: var(--color-black);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-dark-gray);
    border: 2px solid var(--color-medium-gray);
}

.btn-outline:hover {
    border-color: var(--color-red);
    color: var(--color-red);
}

.btn-whatsapp {
    background-color: #25D366;
    color: var(--color-white);
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    color: var(--color-white);
}

.btn-whatsapp-sm {
    background-color: transparent;
    color: #25D366;
    border: 1px solid #25D366;
    padding: 8px 16px;
    font-size: 14px;
}

.btn-whatsapp-sm:hover {
    background-color: #25D366;
    color: var(--color-white);
}

.btn-lg {
    padding: 15px 30px;
    font-size: 18px;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 14px;
}

.btn-block {
    display: block;
    width: 100%;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--color-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo img {
    height: 50px;
}

.main-nav .nav-list {
    display: flex;
    gap: 30px;
}

.main-nav .nav-list a {
    color: var(--color-dark-gray);
    font-family: var(--font-primary);
    font-weight: 600;
    position: relative;
}

.main-nav .nav-list a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.main-nav .nav-list a:hover:after,
.main-nav .nav-list a.active:after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-dark-gray);
    transition: all 0.3s ease;
}

/* ===== HERO SECTION ===== */
.hero {
    padding: 150px 0 100px;
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.1) 0%, rgba(138, 43, 226, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-text {
    flex: 1;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--color-dark-gray);
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.hero-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    position: relative;
}

.hero-image img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background-image: url('../img/wave.svg');
    background-size: cover;
    background-repeat: no-repeat;
}

/* ===== DIFERENCIAIS SECTION ===== */
.diferenciais {
    padding: 80px 0;
    background-color: var(--color-white);
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.diferencial-card {
    background-color: var(--color-white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid var(--color-medium-gray);
}

.diferencial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.diferencial-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.diferencial-icon i {
    font-size: 30px;
    color: var(--color-white);
}

.diferencial-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.badge-whatsapp {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #25D366;
    color: var(--color-white);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* ===== SERVIÇOS SECTION ===== */
.servicos {
    padding: 80px 0;
    background-color: var(--color-light-gray);
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.servico-card {
    background-color: var(--color-white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.servico-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.servico-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.servico-icon i {
    font-size: 24px;
    color: var(--color-white);
}

.servico-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.servico-card p {
    margin-bottom: 20px;
    flex-grow: 1;
}

.servico-cta {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

/* ===== DEPOIMENTOS SECTION ===== */
.depoimentos {
    padding: 80px 0;
    background-color: var(--color-white);
}

.depoimentos-slider {
    position: relative;
    overflow: hidden;
}

.depoimento-card {
    background-color: var(--color-white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    border: 1px solid var(--color-medium-gray);
}

.depoimento-avatar {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid;
    border-image: var(--gradient-primary) 1;
}

.depoimento-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.depoimento-content {
    flex-grow: 1;
}

.depoimento-plataforma {
    display: inline-flex;
    align-items: center;
    background-color: var(--color-light-gray);
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 600;
}

.depoimento-plataforma i {
    margin-right: 5px;
    font-size: 16px;
}

.depoimento-numeros {
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 500;
}

.numero-destaque {
    font-size: 24px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.depoimento-texto {
    font-style: italic;
    position: relative;
    padding: 0 20px;
    margin-bottom: 20px;
}

.depoimento-texto:before,
.depoimento-texto:after {
    content: '"';
    font-size: 40px;
    line-height: 0;
    position: absolute;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.depoimento-texto:before {
    left: 0;
    top: 15px;
}

.depoimento-texto:after {
    right: 0;
    bottom: 0;
}

.depoimento-autor h4 {
    margin-bottom: 5px;
}

.depoimento-autor p {
    font-size: 14px;
    color: var(--color-dark-gray);
    margin-bottom: 0;
}

.depoimentos-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.depoimento-prev,
.depoimento-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--color-white);
    border: 1px solid var(--color-medium-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.depoimento-prev:hover,
.depoimento-next:hover {
    background: var(--gradient-primary);
    border-color: transparent;
}

.depoimento-prev:hover i,
.depoimento-next:hover i {
    color: var(--color-white);
}

.depoimentos-cta {
    text-align: center;
}

/* ===== CONTATO CTA SECTION ===== */
.contato-cta {
    padding: 80px 0;
    background: var(--gradient-primary);
    color: var(--color-white);
}

.contato-cta .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contato-cta-content h2 {
    color: var(--color-white);
}

.contato-cta-content h2:after {
    background: var(--color-white);
}

.contato-cta-buttons {
    margin-top: 30px;
}

.contato-alternativo {
    margin-top: 15px;
    font-size: 14px;
}

.contato-alternativo a {
    color: var(--color-white);
    text-decoration: underline;
}

.contato-form {
    background-color: var(--color-white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contato-form h3 {
    margin-bottom: 20px;
    text-align: center;
}

.form-group {
    margin-bottom: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--color-medium-gray);
    border-radius: var(--border-radius);
    font-family: var(--font-secondary);
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-purple);
    outline: none;
    box-shadow: 0 0 0 3px rgba(138, 43, 226, 0.1);
}

/* ===== FAQ SECTION ===== */
.faq {
    padding: 80px 0;
    background-color: var(--color-light-gray);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--color-white);
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    margin-bottom: 0;
    font-size: 1.1rem;
}

.faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.faq-answer {
    padding: 0 20px 20px;
    display: none;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-cta {
    text-align: center;
    margin-top: 40px;
}

.faq-cta p {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 500;
}

.badge-info {
    display: inline-block;
    background-color: var(--color-light-gray);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-top: 10px;
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--color-black);
    color: var(--color-white);
}

.footer-top {
    padding: 80px 0 50px;
}

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

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 50px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--gradient-primary);
    transform: translateY(-3px);
}

.footer h4 {
    color: var(--color-white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gradient-primary);
}

.footer-links ul,
.footer-services ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a,
.footer-services a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footer-links a:hover,
.footer-services a:hover {
    color: var(--color-white);
    transform: translateX(5px);
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-item i {
    font-size: 24px;
    color: var(--color-white);
}

.contact-item h5 {
    color: var(--color-white);
    margin-bottom: 5px;
}

.contact-item p {
    margin-bottom: 5px;
}

.contact-item span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.contact-item a {
    color: var(--color-white);
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-bottom p {
    margin-bottom: 0;
    font-size: 14px;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-bottom-links a:hover {
    color: var(--color-white);
}

/* ===== WHATSAPP FLUTUANTE ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    z-index: 99;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: var(--color-white);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ===== POP-UP ===== */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.popup.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background-color: var(--color-white);
    border-radius: var(--border-radius);
    padding: 30px;
    max-width: 500px;
    width: 90%;
    position: relative;
    transform: translateY(30px);
    transition: all 0.3s ease;
}

.popup.active .popup-content {
    transform: translateY(0);
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: var(--color-dark-gray);
}

.popup h3 {
    margin-bottom: 15px;
}

/* ===== COOKIE CONSENT ===== */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-white);
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    z-index: 98;
    display: none;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-content p {
    margin-bottom: 0;
    font-size: 14px;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 1023px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .header-content {
        height: 70px;
    }
    
    .logo img {
        height: 40px;
    }
    
    .main-nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 70px);
        background-color: var(--color-white);
        box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        z-index: 999;
    }
    
    .main-nav.active {
        left: 0;
    }
    
    .main-nav .nav-list {
        flex-direction: column;
        gap: 0;
        padding: 20px;
    }
    
    .main-nav .nav-list li {
        width: 100%;
    }
    
    .main-nav .nav-list a {
        display: block;
        padding: 15px 0;
        border-bottom: 1px solid var(--color-light-gray);
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero-content {
        flex-direction: column;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .contato-cta .container {
        grid-template-columns: 1fr;
    }
    
    .depoimento-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .depoimento-avatar {
        margin-bottom: 20px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .diferenciais,
    .servicos,
    .depoimentos,
    .contato-cta,
    .faq {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }
}

/* ===== ANIMAÇÕES ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease forwards;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

.delay-4 {
    animation-delay: 0.4s;
}


/* ===== MELHORIAS DE RESPONSIVIDADE AVANÇADA ===== */

/* Tablets em modo paisagem */
@media (min-width: 768px) and (max-width: 1023px) {
    .container {
        padding: 0 30px;
    }
    
    .hero-content {
        gap: 40px;
    }
    
    .hero-text {
        flex: 1;
    }
    
    .hero-image {
        flex: 1;
    }
    
    .diferenciais-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .servicos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* Smartphones pequenos */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .hero {
        padding: 80px 0 50px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .gestor-carreira-banner {
        padding: 40px 0;
    }
    
    .gestor-banner-text h2 {
        font-size: 1.8rem;
    }
    
    .gestor-banner-text p {
        font-size: 0.95rem;
    }
    
    .diferenciais,
    .servicos,
    .depoimentos,
    .contato-cta,
    .faq,
    .faq-aeo {
        padding: 50px 0;
    }
    
    .section-header {
        margin-bottom: 25px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header p {
        font-size: 0.95rem;
    }
}

/* Melhorias para telas muito pequenas */
@media (max-width: 360px) {
    .container {
        padding: 0 10px;
    }
    
    h1 {
        font-size: 1.6rem;
    }
    
    h2 {
        font-size: 1.4rem;
    }
    
    .btn {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .hero-cta .btn {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .gestor-banner-text h2 {
        font-size: 1.6rem;
    }
    
    .gestor-banner-cta {
        padding: 12px 20px;
        font-size: 13px;
    }
}

/* Otimizações para performance em dispositivos móveis */
@media (max-width: 768px) {
    /* Reduzir animações em dispositivos móveis para melhor performance */
    * {
        animation-duration: 0.3s !important;
        transition-duration: 0.3s !important;
    }
    
    /* Otimizar carregamento de imagens */
    img {
        image-rendering: optimizeSpeed;
    }
    
    /* Melhorar área de toque para elementos interativos */
    .btn,
    .nav-list a,
    .social-icon,
    .whatsapp-float {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Otimizar espaçamento para telas pequenas */
    .header {
        padding: 10px 0;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
}

/* Melhorias de acessibilidade */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Modo escuro para dispositivos que preferem */
@media (prefers-color-scheme: dark) {
    :root {
        --color-white: #1a1a1a;
        --color-black: #ffffff;
        --color-dark-gray: #e0e0e0;
        --color-light-gray: #2a2a2a;
        --color-medium-gray: #404040;
    }
}

/* Otimizações para impressão */
@media print {
    .header,
    .footer,
    .whatsapp-float,
    .gestor-carreira-banner,
    .btn {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
        color: #000;
        background: #fff;
    }
    
    h1, h2, h3 {
        color: #000;
        page-break-after: avoid;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
}

