/* style.css - Versão completa corrigida */

:root {
    --branco: #ffffff;
    --rosa: #c03761;
    --rosa-claro: #e8a2bb;
    --cinza-chumbo: #555555;
    --cinza-claro: #f5f5f5;
    --cinza-texto: #333333;
    --cinza-borda: #dddddd;
    --cinza-escuro: #2a2a2a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    color: var(--cinza-texto);
    line-height: 1.6;
    background-color: var(--branco);
    overflow-x: hidden;
    padding-top: 140px;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header */
header {
    background-color: var(--branco);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0;
    position: relative;
}

.logo {
    margin-bottom: 15px;
    text-align: center;
    z-index: 1001;
}

.logo img {
    height: 80px;
    transition: all 0.3s ease;
    max-width: 100%;
    object-fit: contain;
}

/* Menu */
nav {
    width: 100%;
    background-color: var(--branco);
}

nav ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

nav ul li a {
    color: var(--cinza-escuro);
    padding: 12px 20px;
    font-weight: 600;
    display: block;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
}

nav ul li a:hover {
    color: var(--rosa);
}

nav ul li a.active {
    color: var(--rosa);
}

nav ul li a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background-color: var(--rosa);
}

.menu-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--rosa);
    position: absolute;
    right: 20px;
    top: 40px;
}

/* Slider */
.slider-container {
    width: 100%;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

.slider {
    display: flex;
    width: 100%;
    height: 70vh;
    position: relative;
    transition: transform 0.5s ease;
}

.slide {
    min-width: 100%;
    height: 100%;
    position: relative;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slide-content {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    padding: 30px;
    max-width: 90%;
    width: 1000px;
    border-left: 5px solid var(--rosa);
    text-align: center;
}

.slide-content h2 {
    color: var(--rosa);
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.slide-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
}

.slider-nav button {
    background-color: rgba(255, 255, 255, 0.7);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-nav button:hover {
    background-color: var(--rosa);
    color: white;
}

/* Seções */
.section {
    padding: 80px 0;
}

.section-title {
    color: var(--cinza-escuro);
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
    font-weight: 700;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--rosa);
}

.section-subtitle {
    color: var(--cinza-chumbo);
    font-size: 1.1rem;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* Destaques */
.destaques-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.destaque-item {
    background-color: var(--branco);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.destaque-item:hover {
    transform: translateY(-10px);
}

.destaque-item i {
    font-size: 2.5rem;
    color: var(--rosa);
    margin-bottom: 20px;
}

.destaque-item h3 {
    color: var(--cinza-escuro);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.destaque-item p {
    color: var(--cinza-chumbo);
}

/* Footer */
footer {
    background-color: var(--cinza-chumbo);
    color: var(--branco);
    padding: 60px 0 30px;
    margin-top: 60px;
}

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

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

.footer-contato h3,
.footer-social h3 {
    color: var(--branco);
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-contato h3::after,
.footer-social h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--rosa);
}

.footer-contato p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    opacity: 0.8;
}

.footer-contato i {
    color: var(--rosa);
    font-size: 1.1rem;
}

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

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--rosa);
    color: var(--branco);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--rosa-claro);
    transform: translateY(-3px);
}

.footer-copy {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Responsividade */
@media (max-width: 1200px) {
    .slide-content {
        width: 800px;
    }
}

@media (max-width: 992px) {
    .logo img {
        height: 70px;
    }
    
    body {
        padding-top: 130px;
    }
    
    .slide-content {
        width: 90%;
        padding: 20px;
    }
    
    .slider {
        height: 60vh;
    }
    
    .section {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 110px;
    }
    
    .header-container {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        padding: 10px 0;
    }
    
    .logo {
        margin-bottom: 0;
        width: 100%;
        text-align: center;
    }
    
    .menu-toggle {
        display: block;
    }
    
    nav {
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }
    
    nav.active {
        max-height: 500px;
    }
    
    nav ul {
        flex-direction: column;
        padding: 10px 0;
    }
    
    nav ul li a {
        padding: 15px;
    }
    
    nav ul li a.active::after {
        display: none;
    }
    
    .slider {
        height: 50vh;
    }
    
    .slide-content h2 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    body {
        padding-top: 100px;
    }
    
    .logo img {
        height: 60px;
    }
    
    nav ul {
        top: 100px;
    }
    
    .slider {
        height: 40vh;
    }
    
    .slide-content {
        bottom: 20px;
        padding: 15px;
    }
    
    .slide-content h2 {
        font-size: 1.5rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .slider-nav button {
        width: 40px;
        height: 40px;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}

