/* ==========================================
   50 TONS DE GLAMOUR - MAIN CSS
   ========================================== */

:root {
    --primary-color: #6B2E3F;
    --secondary-color: #8B3A52;
    --accent-color: #D4A574;
    --light-bg: #F5F5F5;
    --white: #FFFFFF;
    --text-dark: #333333;
    --text-light: #666666;
    --border-color: #EEEEEE;
    
    /* Cores das seções */
    --section-o-que-e-50-tons: #F4D4A8;
    --section-quem-somos: #7FB069;
    --section-o-que-queremos: #E8B4A8;
    --section-o-que-vamos-fazer: #5FA89D;
    --section-blog: #F4D4A8;
}

/* ========== RESET E BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--primary-color);
}

p {
    color: var(--text-light);
}

/* ========== HEADER/NAVEGAÇÃO ========== */
.navbar {
    background-color: var(--white) !important;
    padding: 1rem 0;
    z-index: 1000;
}

.navbar-brand {
    font-size: 1.5rem;
    color: var(--primary-color) !important;
    font-family: 'Playfair Display', serif;
    font-weight: 800;
}

.navbar-nav .nav-link {
    color: var(--text-dark) !important;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
    font-weight: 500;
    font-size: 0.95rem;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

/* ========== SEÇÃO 1: HERO ========== */
.hero-section {
    position: relative;
    width: 100%;
    height: 700px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #FFFFFF;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    color: #FFFFFF;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #FFFFFF;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    margin-bottom: 30px;
}

.hero-btn {
    background: var(--primary-color);
    color: #FFFFFF;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.hero-balloon {
    position: absolute;
    bottom: 60px;
    right: 40px;
    z-index: 4;
    background: #FFFFFF;
    border-radius: 20px;
    padding: 25px;
    max-width: 280px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: slideInRight 1s ease-out 0.3s both;
}

.hero-balloon::after {
    content: '';
    position: absolute;
    bottom: -15px;
    right: 30px;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 0px solid transparent;
    border-top: 15px solid #FFFFFF;
}

.hero-balloon p {
    font-size: 0.95rem;
    color: var(--primary-color);
    margin: 0;
    line-height: 1.6;
    font-weight: 500;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* ========== SEÇÕES GERAIS ========== */
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

h2.section-title {
    color: white;
}
.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.section-text {
    font-size: 1rem;
    color: white;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.section-image {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* ========== SEÇÃO 2: QUEM ESTÁ COM A GENTE ========== */
.section-quem-esta {
    padding: 80px 20px;
    background-color: var(--white);
}

.card-profissional {
    background: #1e1e1e;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.card-profissional:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.card-image {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 3rem;
}

.card-profissional h3 {
    padding: 20px 15px 10px;
    font-size: 1.3rem;
    color: var(--primary-color);
}

.card-profissional p {
    padding: 0 15px 20px;
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ========== SEÇÃO 3: O QUE É 50 TONS ========== */
.section-o-que-e-50-tons {
    padding: 80px 20px;
    background-color: var(--section-o-que-e-50-tons);
}

.section-o-que-e-50-tons .row {
    align-items: center;
}

.section-o-que-e-50-tons .section-title {
    text-align: left;
}

/* ========== SEÇÃO 4: QUEM SOMOS ========== */
.section-quem-somos {
    padding: 80px 20px;
    background-color: var(--section-quem-somos);
    color: var(--white);
}

.section-quem-somos .section-title {
    color: var(--white);
    text-align: left;
}

.section-quem-somos .section-text {
    color: rgba(255, 255, 255, 0.9);
}

/* ========== SEÇÃO 5: O QUE QUEREMOS ========== */
.section-o-que-queremos {
    padding: 80px 20px;
    background-color: var(--section-o-que-queremos);
}

.section-o-que-queremos .row {
    align-items: center;
}

.section-o-que-queremos .section-title {
    text-align: left;
}

/* ========== SEÇÃO 6: O QUE VAMOS FAZER ========== */
.section-o-que-vamos-fazer {
    padding: 80px 20px;
    background-color: var(--section-o-que-vamos-fazer);
    color: var(--white);
}

.section-o-que-vamos-fazer .section-title {
    color: var(--white);
    text-align: left;
}

.section-o-que-vamos-fazer .section-text {
    color: rgba(255, 255, 255, 0.9);
}

/* ========== SEÇÃO 7: NOSSAS EMBAIXADORAS ========== */
.section-embaixadoras {
    padding: 80px 20px;
    background-color: var(--light-bg);
}

.embaixadoras-carousel-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.embaixadoras-carousel {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    flex: 1;
    padding: 10px 0;
}

.embaixadoras-carousel::-webkit-scrollbar {
    height: 6px;
}

.embaixadoras-carousel::-webkit-scrollbar-track {
    background: var(--light-bg);
}

.embaixadoras-carousel::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.embaixadora-item {
    text-align: center;
    min-width: 250px;
    flex-shrink: 0;
}

.embaixadora-image {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.embaixadora-item h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.embaixadora-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ========== SEÇÃO 8: VOCÊ NÃO ESTÁ SOZINHA ========== */
.section-voce-nao-esta-sozinha {
    padding: 80px 20px;
    background-color: var(--white);
}

/* ========== CARROSSEL ========== */
.carousel-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.carousel-btn {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.carousel-btn:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

.videos-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    flex: 1;
    padding: 10px 0;
}

.videos-carousel::-webkit-scrollbar {
    height: 6px;
}

.videos-carousel::-webkit-scrollbar-track {
    background: var(--light-bg);
}

.videos-carousel::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.video-item {
    min-width: 300px;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    background: linear-gradient(135deg, #D4A574 0%, #8B3A52 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 3rem;
    flex-shrink: 0;
}

/* ========== SEÇÃO 9: BLOG ========== */
.section-blog {
    padding: 80px 20px;
    background-color: var(--section-blog);
}

.blog-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.blog-image {
    background: no-repeat center center;
    background-size: cover;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 3rem;
}

.blog-image.blog-image-1 {
    background-image: url(../assets/images/SEXUALIDADE_NA_MENOPAUSA.png);
}

.blog-image.blog-image-2 {
    background-image: url(../assets/images/COMIDA_DE_CONFORTO.png);
}

.blog-image.blog-image-3 {
    background-image: url(../assets/images/VIDA_EM_SEUS_PROPRIOS_TERMOS.png);
}

.blog-card h3 {
    padding: 20px 20px 10px;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.blog-card p {
    padding: 0 20px;
    color: var(--text-light);
    font-size: 0.95rem;
    flex-grow: 1;
}

.blog-card .btn {
    margin: 15px 20px 20px;
    align-self: flex-start;
}

.blog-gallery {
    margin-top: 60px;
}

.gallery-item {
    background: linear-gradient(135deg, #8B3A52 0%, #D4A574 100%);
    height: 250px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item.gallery-item-1 {
    background-image: url(../assets/images/image_galeria_1.png);
    background-size: cover;
    background-position: center;
}

.gallery-item.gallery-item-2 {
    background-image: url(../assets/images/image_galeria_2.png);
    background-size: cover;
    background-position: center;
}

.gallery-item.gallery-item-3 {
    background-image: url(../assets/images/image_galeria_3.png);
    background-size: cover;
    background-position: center;
}

.gallery-item.gallery-item-4 {
    background-image: url(../assets/images/image_galeria_4.png);
    background-size: cover;
    background-position: center;
}

.gallery-item:hover {
    transform: scale(1.02);
}

/* ========== SEÇÃO 10: REDES SOCIAIS ========== */
.section-redes-sociais {
    padding: 80px 20px;
    background-color: var(--light-bg);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.social-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
    color: var(--white);
}

/* ========== SEÇÃO 11: NEWSLETTER ========== */
.section-newsletter {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 80px 20px;
}

.newsletter-balloon {
    background: var(--white);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    position: relative;
}

.newsletter-balloon::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 15px solid var(--white);
}

.newsletter-balloon h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.newsletter-balloon p {
    font-size: 1rem;
    margin-bottom: 30px;
    color: var(--text-light);
}

.newsletter-form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input {
    flex: 1;
    min-width: 250px;
    padding: 12px 20px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(107, 46, 63, 0.1);
}

.newsletter-form .btn {
    padding: 12px 30px;
    font-weight: 600;
}

/* ========== FOOTER ========== */
.footer-section {
    background: var(--primary-color);
    color: var(--white);
    padding: 60px 20px 30px;
}

.footer-title h2 {
    font-size: 2.5rem;
    color: var(--white);
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.4;
}

.footer-heading {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--white);
    text-decoration: underline;
}

.footer-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.8;
    margin: 0;
}

.footer-text i {
    margin-right: 10px;
    color: var(--accent-color);
}

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

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

.footer-social a:hover {
    background: var(--accent-color);
    transform: scale(1.1);
}

.footer-bottom {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* ========== RESPONSIVIDADE ========== */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .hero-section {
        height: 500px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-balloon {
        position: static;
        max-width: 100%;
        margin-top: 30px;
    }

    .hero-balloon::after {
        display: none;
    }

    .section-o-que-e-50-tons .row,
    .section-o-que-queremos .row {
        flex-direction: column;
        gap: 30px;
    }

    .section-quem-somos .row {
        flex-direction: column-reverse;
        gap: 30px;
    }

    .section-o-que-vamos-fazer .row {
        flex-direction: column;
        gap: 30px;
    }

    .section-o-que-e-50-tons .section-title,
    .section-o-que-queremos .section-title {
        text-align: center;
    }

    .section-quem-somos .section-title,
    .section-o-que-vamos-fazer .section-title {
        text-align: center;
    }

    .embaixadora-item {
        min-width: 200px;
    }

    .embaixadora-image {
        height: 250px;
    }

    .newsletter-balloon {
        padding: 30px 20px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        min-width: 100%;
    }

    .footer-title h2 {
        font-size: 1.8rem;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .video-item {
        min-width: 250px;
        height: 150px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.5rem;
    }

    .hero-section {
        height: 400px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .video-item {
        min-width: 200px;
        height: 120px;
    }

    .embaixadora-item {
        min-width: 150px;
    }

    .embaixadora-image {
        height: 200px;
    }

    .social-icons {
        gap: 20px;
    }

    .social-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .footer-social {
        gap: 10px;
    }

    .footer-social a {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
}
