/* ========== ESTILOS COMPARTILHADOS DAS PÁGINAS INTERNAS ========== */
/* Arquivo: css/interno.css */
/* Estilos usados em servicos.php, sobre.php, depoimentos.php e contato.php */

/* Hero Interno */
.hero-interno {
    height: 15rem;
    background: linear-gradient(135deg, var(--primary-pink) 0%, var(--rose-gold) 100%);
    position: relative;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
    padding: 0; /* NOVO - Remove todo padding */
    margin-top: 75px; /* NOVO - Compensa a altura do navbar fixo */
}

.hero-interno::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: bottom;
    opacity: 0.3;
}

.hero-content-interno {
    position: relative;
    z-index: 2;
    text-align: center;
    transform: translateY(8px);
}

.hero-content-interno h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-content-interno .lead {
    font-size: 1.2rem;
    opacity: 0.95;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
    margin-bottom: 0;
}

/* Ajuste de espaçamento para seção após o hero */
.hero-interno + section {
    padding-top: 3rem !important;
}

/* Call to Action Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-pink) 0%, var(--rose-gold) 100%);
    color: var(--white);
}

.cta-section h2 {
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 700;
}

.cta-section .lead {
    opacity: 0.95;
}

.cta-section .btn-outline-light {
    border: 2px solid var(--white);
    color: var(--white);
    padding: 0.8rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
}

.cta-section .btn-outline-light:hover {
    background: var(--white);
    color: var(--rose-gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cta-section .btn-primary {
    background: var(--white);
    color: var(--rose-gold);
    border: 2px solid var(--white);
    padding: 0.8rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    animation: none;
}

.cta-section .btn-primary:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-interno {
        height: 12rem;
    }

    .hero-content-interno h1 {
        font-size: 2.2rem;
    }

    .hero-content-interno .lead {
        font-size: 1rem;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }

    /* NOVO - Reduz espaçamento em mobile */
    .hero-interno + section {
        padding-top: 2rem !important;
    }
}