@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

@font-face {
    font-family: 'Futura Hv BT Heavy';
    src: url('../font/Futura-Hv-BT-Heavy.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Reset e estilos globais */
.ws-reset {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

.ws-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
    overflow-x: hidden;
    background-image: url('../assets/foto.png');
    background-repeat: no-repeat;
    background-position: center center;
    /* Mais específico */
    background-size: cover;
    min-height: 100vh;
    position: relative;
    /* Importante para elementos filhos */
    background-color: #f8f9fa;
    /* Cor de fallback */
}

.ws-header {
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: self-start;
    background-color: transparent;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.ws-nav-brand img {
    height: 40px;
    width: auto;
    transition: all 0.3s ease;
}

.ws-mobile-menu-button {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.ws-bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 5px 0;
    transition: all 0.3s ease;
}

.ws-nav {
    display: flex;
    align-items: center;
}

.ws-nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.ws-nav-item {
    margin: 0 10px;
    position: relative;
}

.ws-nav-link {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    padding: 10px 15px;
    border-radius: 20px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

    .ws-nav-link:hover,
    .ws-nav-link.active {
        background-color: #02eefb;
        color: #000;
    }


.ws-social-icon,
.ws-lang-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.ws-contact-btn {
    background-color: #ff0033;
    color: white !important;
}

    .ws-contact-btn:hover {
        background-color: #e0002b;
    }

/* Responsividade */
@media (max-width: 992px) {
    .ws-mobile-menu-button {
        display: block;
    }

    .ws-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateX(100%);
        transition: transform 0.3s ease;
    }

        .ws-nav.active {
            transform: translateX(0);
        }

    .ws-nav-list {
        flex-direction: column;
    }

    .ws-nav-item {
        margin: 10px 0;
    }
}

/* Main content */
.ws-main {
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: space-between;
    max-width: 1000px;
}

.ws-text-section {
    flex: 1;
    min-width: 300px;
    padding: 0 20px;
}

    .ws-text-section h1 {
        font-size: clamp(2rem, 5vw, 3.5rem);
        font-weight: bold;
        color: #ff0033;
        text-transform: uppercase;
        margin-left: 25px;
    }

    .ws-text-section h3 {
        font-size: clamp(1.2rem, 2vw, 1.5rem);
        color: #0c0049;
        font-style: italic;
        font-family: Roboto;
    }

    .ws-text-section h2 {
        font-size: clamp(1.5rem, 3vw, 2rem);
        margin-bottom: 20px;
        font-weight: 400;
        margin-left: 15px;
    }

.ws-text-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: justify;
}

.ws-date-badge {
    background-color: aqua;
    color: #0c0049;
    text-align: center;
    width: 200px;
    padding: 10px;
    text-transform: uppercase;
    border-radius: 20px;
    font-weight: bold;
    margin-left: -130px;
    align-self: center;
}

.ws-request-text,
.ws-wella-text {
    color: #0c0049;
    width: 100%;
    max-width: 300px;
    font-size: 1rem;
    font-family: Montserrat;
    font-weight: bold;
}

.ws-uppercase-text {
    text-transform: uppercase;
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #0c0049;
    font-weight: bold;
    text-align: left;
    max-width: 300px;
    font-family: 'Montserrat', sans-serif;
    /* Trocando Ubuntu por Roboto */
    font-weight: bold;
}

.ws-red-text {
    color: #ff0033;
    font-family: 'Roboto', sans-serif;
    /* Trocando Ubuntu por Roboto */
    font-weight: 500;
}

/* Time section */
.ws-time-section {
    display: flex;
    flex-direction: column;
}

.ws-countdown-container {
    display: flex;
    align-items: center;
    gap: 2px;
    flex-wrap: wrap;
}

.ws-countdown {
    display: flex;
    gap: 15px;
    margin: 20px 0;
    background-color: #283650;
    max-width: 500px;
    min-width: 300px;
    height: 100px;
    border-radius: 10px;
    padding: 10px;
    flex-wrap: wrap;
}

.ws-hour-img {
    display: inline-block; /* Necessário para aplicar transformações */
    will-change: transform; /* Otimização para animações */
    transition: transform 1s ease-out;
    transform-origin: center center;
    height: 60px;
}

.ws-time-box {
    background: #283650;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    color: #fff;
    flex: 1;
    min-width: 60px;
}

    .ws-time-box span {
        font-size: 1.5rem;
        font-weight: bold;
    }

/* Photo section */
.ws-photo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: -40px;
    flex: 1;
    min-width: 300px;
}

.ws-wella-app {
    display: flex;
    align-items: center;
    color: #ff0033;
    margin: 20px 0;
    font-size: clamp(3rem, 8vw, 5rem);
    font-family: 'Futura Hv BT Heavy', sans-serif;
}

.ws-app-label {
    font-size: 1rem;
    background-color: #ff0033;
    color: #fff;
    padding: 10px;
    border-radius: 100%;
    margin-left: 10px;
    margin-top: 15px;
    font-family: 'Futura Hv BT Heavy', sans-serif;
}

.ws-call-img {
    height: auto;
    max-height: 600px;
    width: 100%;
    max-width: 800px;
}

.ws-cars-img {
    width: 100%;
    max-width: 500px;
    margin-top: -200px;
    align-self: self-start;
}

/* Action buttons */
/* Container dos botões */
.ws-action-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Estilo base dos botões */
.ws-action-button {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 20px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 180px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Botão primário */
.ws-primary-btn {
    background-color: black;
    /* Vermelho Wella */
    color: white;
}

/* Botão secundário */
.ws-secondary-btn {
    background-color: black;
    /* Azul escuro Wella */
    color: white;
}

/* Conteúdo interno dos botões */
.ws-btn-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.ws-btn-light {
    font-size: 0.8rem;
    opacity: 0.9;
    line-height: 1.2;
    text-decoration: none;
}

.ws-btn-strong {
    font-size: 1.1rem;
    font-weight: bold;
    line-height: 1.2;
}

/* Efeitos hover */
.ws-primary-btn:hover {
    background-color: #e0002b;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(255, 0, 51, 0.2);
}

.ws-secondary-btn:hover {
    background-color: #0a0038;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(12, 0, 73, 0.2);
}

/* Responsividade */
@media (max-width: 768px) {
    .ws-action-buttons {
        flex-direction: column;
        width: 100%;
    }

    .ws-action-button {
        width: 100%;
        justify-content: center;
    }
}

/* Footer styles */
.ws-footer {
    width: 100%;
    max-width: 1300px;
    padding: 20px;
    margin-top: -120px;
}

.ws-footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.ws-cars-img {
    width: auto;
    max-width: 500px;
    height: auto;
    margin-top: -100px;
}

.ws-list-container {
    margin-left: auto;
    padding-left: 40px;
}

.ws-footer-list {
    list-style: none;
    padding: 0;
    margin-top: 90px;
    text-align: left;
    /* Alinha o texto à direita */
}

    .ws-footer-list li {
        font-size: 1rem;
        margin-bottom: 10px;
        position: relative;
        padding-left: 25px;
        /* Ajustado para direita */
        font-weight: bold;
    }

        .ws-footer-list li::before {
            content: "•";
            color: #ff0033;
            font-size: 1.2rem;
            position: absolute;
            left: 0;
            /* Marcador à direita */
            top: 0;
        }


/* Estilos do botão hamburger */
.ws-mobile-menu-button {
    display: none;
    /* Visível apenas em mobile */
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

    .ws-mobile-menu-button .ws-bar {
        display: block;
        width: 25px;
        height: 3px;
        background-color: #333;
        margin: 5px 0;
        transition: all 0.3s ease;
    }

/* Estilos do menu */
.ws-nav {
    transition: all 0.3s ease;
}

.ws-nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Estilos para mobile */
@media (max-width: 992px) {
    .ws-mobile-menu-button {
        display: block;
    }

    .ws-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: white;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }

        .ws-nav.active {
            transform: translateX(0);
        }

    .ws-nav-list {
        flex-direction: column;
        padding: 80px 20px 20px;
    }

    .ws-mobile-menu-button.active .ws-bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .ws-mobile-menu-button.active .ws-bar:nth-child(2) {
        opacity: 0;
    }

    .ws-mobile-menu-button.active .ws-bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}


/* Estilos do botão hamburger */
.ws-mobile-menu-button {
    display: none;
    /* Visível apenas em mobile */
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

    .ws-mobile-menu-button .ws-bar {
        display: block;
        width: 25px;
        height: 3px;
        background-color: #333;
        margin: 5px 0;
        transition: all 0.3s ease;
    }

/* Estilos do menu */
.ws-nav {
    transition: all 0.3s ease;
}

.ws-nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Estilos para mobile */
@media (max-width: 992px) {
    .ws-mobile-menu-button {
        display: block;
    }

    .ws-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: white;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }

        .ws-nav.active {
            transform: translateX(0);
        }

    .ws-nav-list {
        flex-direction: column;
        padding: 80px 20px 20px;
    }

    .ws-mobile-menu-button.active .ws-bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .ws-mobile-menu-button.active .ws-bar:nth-child(2) {
        opacity: 0;
    }

    .ws-mobile-menu-button.active .ws-bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}


/* ===== RESPONSIVIDADE ADICIONAL ===== */
/*@media (max-width: 1200px) {
    .ws-main {
        gap: 30px;
        padding: 0 15px;
    }

    .ws-cars-img {
        max-width: 400px;
        margin-top: -150px;
    }

    .ws-footer {
        margin-top: -90px;
    }
}

@media (max-width: 992px) {
    .ws-main {
        flex-direction: column;
        align-items: center;
        max-width: 100%;
    }

    .ws-text-section,
    .ws-photo-section {
        width: 100%;
        max-width: 100%;
    }

    .ws-date-badge {
        margin-left: 0;
        align-self: flex-start;
    }

    .ws-cars-img {
        margin-top: 0;
        align-self: center;
    }

    .ws-footer-content {
        flex-direction: column;
        align-items: center;
    }

    .ws-list-container {
        margin-left: 0;
        padding-left: 0;
        margin-top: 30px;
    }

    .ws-footer-list {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .ws-header {
        padding: 15px;
    }

    .ws-nav-brand img {
        height: 40px;
    }

    .ws-text-section h1,
    .ws-text-section h2,
    .ws-text-section h3 {
        margin-left: 0;
        text-align: center;
    }

    .ws-text-content {
        align-items: center;
        text-align: center;
    }

    .ws-request-text,
    .ws-wella-text,
    .ws-uppercase-text {
        max-width: 100%;
        text-align: center;
    }

    .ws-countdown {
        justify-content: center;
        height: auto;
        padding: 15px 10px;
    }

    .ws-time-box {
        min-width: 50px;
    }

    .ws-wella-app {
        justify-content: center;
    }

    .ws-footer {
        margin-top: 0;
        padding-top: 40px;
    }
}

@media (max-width: 576px) {
    .ws-nav-link {
        padding: 8px 12px;
    }

    .ws-countdown {
        gap: 8px;
    }

    .ws-time-box span {
        font-size: 1.2rem;
    }

    .ws-hour-img {
        height: 40px;
    }

    .ws-action-button {
        min-width: 100%;
    }

    .ws-footer-list li {
        font-size: 0.9rem;
        padding-left: 20px;
    }
}*/

/* Ajustes para telas muito pequenas */
/*@media (max-width: 400px) {
    .ws-date-badge {
        width: 100%;
        box-sizing: border-box;
    }

    .ws-time-box {
        min-width: 40px;
        padding: 5px;
    }

        .ws-time-box span {
            font-size: 1rem;
        }

    .ws-app-label {
        padding: 6px;
        font-size: 0.8rem;
    }
}*/

/* Orientação paisagem em dispositivos móveis */
/*@media (max-height: 500px) and (orientation: landscape) {
    .ws-nav {
        overflow-y: auto;
        padding: 60px 20px 20px;
    }

    .ws-main {
        margin-top: 30px;
        gap: 20px;
    }

    .ws-cars-img {
        max-width: 300px;
    }
}*/
/* ===== RESPONSIVIDADE ADICIONAL ===== */
@media (max-width: 1200px) {
    .ws-main {
        gap: 30px;
        padding: 0 15px;
    }

    .ws-cars-img {
        max-width: 400px;
        margin-top: -150px;
    }

    .ws-footer {
        margin-top: -90px;
    }
}

@media (max-width: 992px) {
    .ws-main {
        flex-direction: column;
        align-items: center;
        max-width: 100%;
    }

    .ws-text-section,
    .ws-photo-section {
        width: 100%;
        max-width: 100%;
    }

    .ws-date-badge {
        margin-left: 0;
        align-self: flex-start;
    }

    .ws-cars-img {
        margin-top: 0;
        align-self: center;
    }

    .ws-footer-content {
        flex-direction: column;
        align-items: center;
    }

    .ws-list-container {
        margin-left: 0;
        padding-left: 0;
        margin-top: 30px;
    }

    .ws-footer-list {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .ws-header {
        padding: 15px;
    }

    .ws-nav-brand img {
        height: 40px;
    }

    .ws-text-section h1,
    .ws-text-section h2,
    .ws-text-section h3 {
        margin-left: 0;
        text-align: center;
    }

    .ws-text-content {
        align-items: center;
        text-align: center;
    }

    .ws-request-text,
    .ws-wella-text,
    .ws-uppercase-text {
        max-width: 100%;
        text-align: center;
        font-family: 'Montserrat', sans-serif;
        font-weight: bold;
    }

    .ws-countdown {
        justify-content: center;
        height: auto;
        padding: 15px 10px;
    }

    .ws-time-box {
        min-width: 50px;
    }

    .ws-wella-app {
        justify-content: center;
    }

    .ws-footer {
        margin-top: 0;
        padding-top: 40px;
    }
}

@media (max-width: 576px) {
    .ws-nav-link {
        padding: 8px 12px;
    }

    .ws-countdown {
        gap: 8px;
    }

    .ws-time-box span {
        font-size: 1.2rem;
    }

    .ws-hour-img {
        height: 40px;
        display: block;
        margin: 0 auto; /* Centraliza horizontalmente */
    }

    .ws-action-button {
        min-width: 100%;
    }

    .ws-footer-list li {
        font-size: 0.9rem;
        padding-left: 20px;
    }
}

/* Ajustes para telas muito pequenas */
@media (max-width: 400px) {
    .ws-date-badge {
        width: 100%;
        box-sizing: border-box;
    }

    .ws-time-box {
        min-width: 40px;
        padding: 5px;
    }

        .ws-time-box span {
            font-size: 1rem;
        }

    .ws-app-label {
        padding: 6px;
        font-size: 0.8rem;
    }
}

/* Orientação paisagem em dispositivos móveis */
@media (max-height: 500px) and (orientation: landscape) {
    .ws-nav {
        overflow-y: auto;
        padding: 60px 20px 20px;
    }

    .ws-main {
        margin-top: 30px;
        gap: 20px;
    }

    .ws-cars-img {
        max-width: 300px;
    }
}



/* Dropdown styles - Versão atualizada */
.ws-dropdown {
    position: relative;
}

.ws-dropdown-toggle {
    position: relative;
    padding-right: 25px;
    cursor: pointer;
}

.ws-dropdown-icon {
    margin-left: 5px;
    transition: transform 0.3s;
}

.ws-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

/* Desktop - funciona com hover */
.ws-dropdown:hover .ws-dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.ws-dropdown-item {
    display: flex;
    align-items: center;
    padding: 8px 15px;
    color: #333;
    text-decoration: none;
    transition: all 0.2s;
}

    .ws-dropdown-item:hover {
        background-color: #f5f5f5;
        color: #ff0033;
    }

/* Responsividade - Versão Mobile */
@media (max-width: 992px) {
    .ws-dropdown {
        width: 100%;
    }

    .ws-dropdown-menu {
        position: static;
        display: none;
        width: 100%;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        border-radius: 0;
        padding-left: 20px;
        background-color: #f8f8f8;
        transition: none;
        margin-top: 5px;
    }

    .ws-dropdown.active .ws-dropdown-menu {
        display: block;
    }

    .ws-dropdown.active .ws-dropdown-icon {
        transform: rotate(180deg);
    }

    /* Remove o hover effect no mobile */
    .ws-dropdown:hover .ws-dropdown-menu {
        opacity: 1;
        visibility: visible;
        display: none;
        /* Importante para não conflitar com o .active */
    }

    .ws-dropdown-toggle {
        pointer-events: auto;
    }
}
