/* Variáveis */
:root {
    --vermelho-rosa: #E83D6D;
    --rosa-claro: #FF7AA2;
    --vermelho-escuro: #B82E5A;
    --preto: #111111;
    --branco: #FFFFFF;
    --cinza-claro: #F5F5F5;
}

/* Reset básico */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--preto);
    color: var(--preto);
    line-height: 1.6;
}

/* Wrapper centraliza conteúdo e cria margens */
.site-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--branco);
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: var(--branco);
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    position: relative;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-container img {
    height: 40px;
}

.logo-text {
    font-family: 'Sora', sans-serif;
    font-size: 1.8rem;
    color: var(--vermelho-escuro);
}

.search-city {
    display: flex;
    align-items: center;
    position: relative;
    background: var(--branco);
    border-radius: 25px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    padding: 8px 15px;
    max-width: 300px;
    width: 100%;
    flex: 1;
    margin: 0 20px;
}

.search-city input {
    border: none;
    outline: none;
    flex: 1;
    font-size: 1rem;
    border-radius: 25px;
    padding: 5px 10px;
}

.search-city img {
    height: 20px;
    cursor: pointer;
    margin-left: 10px;
}

.sugestoes-cidade {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--branco);
    border: 1px solid #ccc;
    max-height: 200px;
    overflow-y: auto;
    display: none;
    z-index: 1100;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.sugestoes-cidade div {
    padding: 8px 15px;
    cursor: pointer;
}

.sugestoes-cidade div:hover {
    background-color: var(--cinza-claro);
}

/* Botões Header */
.header-buttons {
    display: flex;
    gap: 20px;
}

.header-buttons button {
    background: transparent;
    border: none;
    font-weight: 600;
    color: var(--preto);
    cursor: pointer;
    padding: 8px 0;
    position: relative;
}

.header-buttons button::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--vermelho-rosa);
    transition: width 0.3s;
}

.header-buttons button:hover::after {
    width: 100%;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-menu {
    display: none;
    position: absolute;
    background: var(--branco);
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    z-index: 100;
    border-radius: 5px;
    top: 100%;
    left: 0;
    padding: 10px 15px;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu a {
    color: var(--preto);
    padding: 12px 16px;
    display: block;
    text-decoration: none;
}

.dropdown-menu a:hover {
    background: var(--cinza-claro);
}

/* Entrar dropdown */
.entrar-dropdown .dropdown-menu {
    left: auto;
    right: 0;
    width: 220px;
    display: none;
    flex-direction: column;
    gap: 10px;
    padding: 15px;
}

.entrar-dropdown:hover .dropdown-menu {
    display: flex;
}

.entrar-menu input {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.btn-login-confirm {
    background: var(--vermelho-rosa);
    color: var(--branco);
    border: none;
    padding: 10px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.btn-login-confirm:hover {
    background: var(--vermelho-escuro);
}

/* Pop-up */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-content {
    background: var(--branco);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 420px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.popup h2 {
    color: var(--vermelho-rosa);
    margin-bottom: 20px;
    font-size: 1.4rem;
    font-weight: 700;
}

.popup-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.popup-buttons button {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}

#btnEntrar {
    background: var(--vermelho-rosa);
    color: var(--branco);
}

#btnSair {
    background: transparent;
    color: var(--preto);
    border: 2px solid var(--preto);
    border-radius: 50px;
}

/* Main */
main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: calc(100vh - 80px);
    gap: 2rem;
    padding: 2rem;
    background-color: var(--branco);
}

/* Modelo */
.modelo-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.modelo-column-2 {
    display: none;
}

.modelo-placeholder {
    width: 432px;
    height: 768px;
    background: #f0f0f0;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.modelo-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.header-acompanhantes-mobile {
    display: none;
}

/* Hero-text */
.hero-text {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.7rem;
    margin-bottom: 2rem;
    color: var(--vermelho-escuro);
}

.destaques p {
    margin: 1rem 0;
    font-size: 1.1rem;
}

.destaques span {
    color: var(--vermelho-rosa);
    margin-right: 10px;
    font-weight: 700;
    font-size: 1.3rem;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    margin-top: 2rem;
}

.cta-primary, .cta-secondary {
    padding: 14px 32px;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.cta-primary {
    background: var(--vermelho-rosa);
    color: var(--branco);
}

.cta-secondary {
    background: transparent;
    color: var(--vermelho-rosa);
    border: 2px solid var(--vermelho-rosa);
}

.cta-primary:hover {
    background: var(--vermelho-escuro);
}

.cta-secondary:hover {
    background: var(--rosa-claro);
    color: var(--branco);
}

/* Cookies */
.aviso-cookies {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    color: #222;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    z-index: 1000;
    max-width: 420px;
    text-align: center;
    display: none;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
}

.aviso-cookies p {
    margin: 0 0 15px 0;
    font-size: 15px;
}

.aviso-cookies a {
    color: #1a3a6f;
    text-decoration: underline;
}

.botoes-cookies {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.aviso-cookies button {
    padding: 12px 28px;
    border-radius: 50px;
    cursor: pointer;
    border: none;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}

#btn-aceitar-cookies {
    background: var(--vermelho-rosa);
    color: white;
}

#btn-recusar-cookies {
    background: transparent;
    color: #222;
    border: 1px solid #222;
}

/* Footer */
.footer {
    background: var(--preto);
    padding: 50px 0 30px 0;
    text-align: center;
}

.footer-social {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 15px;
}

.footer-social a img {
    width: 28px;
    height: 28px;
    transition: all 0.3s;
    opacity: 0.7;
}

.footer-social a img:hover {
    opacity: 1;
    transform: scale(1.1);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--branco);
    text-decoration: none;
    font-size: 0.85rem;
    position: relative;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--branco);
    transition: width 0.3s;
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-languages {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.footer-languages button {
    background: transparent;
    border: none;
    color: var(--branco);
    cursor: pointer;
    font-weight: 600;
    padding: 0;
    position: relative;
}

.footer-languages button.active {
    color: var(--vermelho-rosa);
}

.footer-languages button::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -3px;
    left: 0;
    background: var(--vermelho-rosa);
    transition: width 0.3s;
}

.footer-languages button.active::after {
    width: 100%;
}

/* Responsividade */
@media screen and (max-width: 1024px) {
    header {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px 20px;
    }

    .logo-container {
        flex-direction: row;
        align-items: center;
        gap: 10px;
        width: 100%;
    }

    .logo-text {
        font-size: 1.5rem;
    }

    .search-city {
        width: 100%;
        max-width: none;
        margin: 10px 0;
    }

    .header-buttons {
        width: 100%;
        display: flex;
        justify-content: space-between;
        gap: 10px;
        margin-bottom: 10px;
    }

    main {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: flex-start;
        min-height: auto;
        padding: 15px;
        gap: 0;
    }

    .modelo-column {
        width: 35%;
        order: 1;
    }

    .modelo-placeholder {
        width: 100%;
        max-width: none;
        aspect-ratio: 9 / 16;
        margin: 0;
    }

    .hero-text {
        width: 65%;
        order: 2;
    }

    .hero-text-parte2 {
        width: 65%;
        order: 3;
        padding: 1rem;
    }

    .modelo-column-2 {
        display: flex;
        width: 35%;
        order: 4;
    }

    .header-acompanhantes-mobile {
        display: none;
    }

    .hero-text h2 {
        font-size: 1.2rem;
        text-align: center;
        letter-spacing: 0.5px;
    }

    .destaques p {
        font-size: 1rem;
        margin: 0.8rem 0;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .cta-primary, .cta-secondary {
        width: 100%;
        text-align: center;
        padding: 14px 0;
        font-size: 0.85rem;
        border-radius: 50px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .footer {
        padding: 20px 10px;
    }

    .footer-links {
        flex-direction: column;
        gap: 8px;
        margin-bottom: 10px;
    }
}