* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    background-color: #ffffff;
    font-size: 16px;
    color: #333;
    display: flex;
    flex-direction: column;
    height: 100%;
}

header {
    background-color: #ffffff;
    padding: 10px;
    transition: background-color 0.3s ease;
    border-radius: 100px;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    height: 70px;
    position: absolute;
    top: 10px;
    width: 100%;
    z-index: 9999;
}

header .flower-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 70px;
    height: 70px;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    margin-top: 10px;
    padding: 0;
}

nav ul li {
    margin: 0 20px;
}

nav ul li a {
    text-decoration: none;
    color: #000000;
    font-size: 1.5rem;
    font-weight: 500;
    text-transform: uppercase;
    padding: 10px;
    transition: color 0.3s ease, transform 0.3s ease;
    position: relative;
}

nav ul li a:hover {
    color: #408726;
}

.containerum {
    position: relative;
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
    height: 500px;
    z-index: 10;
    transform: translate(40%, 20%);
}

.slideshow-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
}

.mySlides {
    flex: 0 0 100%;
    transition: transform 1.0s ease;
}

.mySlides img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.dot-container {
    text-align: center;
    padding: 10px;
}

.dot {
    height: 15px;
    width: 15px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
}

.active {
    background-color: #90a955;
}

.prev, .next {
    position: absolute;
    top: 50%;
    padding: 12px;
    background-color: rgba(0, 0, 0, 0.4);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 20px;
    z-index: 100;
    border-radius: 5px;
    transform: translateY(-50%);
    transition: background-color 0.3s ease;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.6);
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

section-content {
    padding: 50px 20px;
    margin: 40px auto;
    width: 90%;
    max-width: 1200px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.container-verde {
    background-color: rgb(86, 135, 22);
    padding: 230px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: -500px;
    position: relative;
}

.text-container h1 {
    font-family: 'Anton', sans-serif;
    font-size: 5rem;
    font-weight: bold;
    color: black;
    text-align: left;
    margin-left: 150px;
    text-transform: uppercase;
}

.text-container h3 {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    color: #2f2f2f;
    text-align: left;
    margin-left: 150px;
    font-size: 1.5rem;
    letter-spacing: 4px;
    line-height: 1.5;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    transition: color 0.3s ease, transform 0.3s ease;
}

.text-container h3:hover {
    color: #90a955;
    transform: translateY(-5px);
}

.police-tape {
    background-color: #fff6ae;
    padding: 15px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
}

.police-tape span {
    display: inline-block;
    font-size: 1.2rem;
    font-weight: normal;
    letter-spacing: 3px;
    color: #000000;
    text-transform: uppercase;
    animation: rotate-text 10s linear infinite;
}

.timeline-section {
    padding: 100px 0;
    background-color: #f8f8f8;
    text-align: center;
}

.timeline-title {
    font-size: 4rem;
    color: #408726;
    margin-bottom: 50px;
    text-transform: uppercase;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.timeline-container {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline-item {
    width: 30%;
    margin: 10px;
    background-color: #f1e6d6;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgb(27, 97, 34);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    padding: 20px;
    height: auto;
    position: relative;
}

.timeline-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.timeline-item img {
    width: 100%;
    border-radius: 8px 8px 0 0;
    height: 200px;
    object-fit: cover;
    margin-bottom: 15px;
}

.timeline-content {
    flex-grow: 1;
}

.timeline-item h3 {
    color: #000000;
    font-size: 1.6rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-bottom: 10px;
}

.timeline-item p {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
    font-family: 'Roboto', sans-serif;
    margin-bottom: 15px;
}

.timeline-item:nth-child(odd) {
    background-color: #e3d17e;
}

.timeline-item:nth-child(even) {
    background-color: #a8d08d;
}

.timeline-item .text {
    margin-top: 20px;
}

.historia {
    background-color: #408726; 
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1.5rem;
    font-weight: 600;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-top: 20px;
}

.historia:hover {
    background-color: #1e6334; 
    transform: translateY(-5px); 
}


/* Estilizando a seção "Como Funciona o Sócio DBV" */
.socio-section {
    padding: 50px 20px;
    background: linear-gradient(to bottom, #a8e56c, #497331); /* Fundo verde em degradê */
    text-align: center;
}

.socio-title {
    font-size: 2rem;
    margin-bottom: 40px;
}

.socio-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    padding: 0 10px;
}

.socio-item {
    position: relative;
    width: 250px;
    height: 400px;  /* Aumentando a altura para tornar as imagens mais verticais */
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.socio-item:hover {
    transform: translateY(-10px);
}

.socio-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.socio-item:hover .socio-image {
    transform: scale(1.1);  /* Zoom na imagem quando a seção é selecionada */
}

.socio-text {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    max-width: 80%;
}

.socio-text h3 {
    margin: 0;
}


/* Estilizando a seção de planos */
.planos-section {
    padding: 50px 20px;
    background-color: #f4f4f4;
    text-align: center;
}

.planos-title {
    font-size: 2rem;
    margin-bottom: 40px;
}

.planos-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.plano-item {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 250px;
    padding: 20px;
    text-align: left;
    transition: transform 0.3s ease;
}

.plano-item:hover {
    transform: translateY(-10px);
}

.plano-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.plano-item .preco {
    font-size: 1.25rem;
    color: #2c9f45;
    margin-bottom: 15px;
}

.plano-item ul {
    list-style-type: none;
    padding: 0;
    margin-bottom: 20px;
}

.plano-item ul li {
    margin-bottom: 10px;
}

.btn-plano {
    display: inline-block;
    padding: 10px 20px;
    background-color: #2c9f45;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
}

.btn-plano:hover {
    background-color: #248b3d;
}

/* Estilizando a seção "Roupas e Vantagens" */
.roupas-vantagens {
    padding: 50px 20px;
    background-color: #f0f9f4;
    text-align: center;
}

.roupas-vantagens-title {
    font-size: 2rem;
    margin-bottom: 40px;
}

.roupas-vantagens-container {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.roupas-item, .vantagens-item {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 250px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.roupas-item:hover, .vantagens-item:hover {
    transform: translateY(-10px);
}

.roupas-item img, .vantagens-item img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.roupas-item h3, .vantagens-item h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.roupas-item p, .vantagens-item p {
    font-size: 1rem;
    color: #555;
}

/* Estilo para o footer */
.footer {
    background-color: #3fa741;
    color: white;
    padding: 20px 0;
    text-align: center;
    font-family: 'Roboto', sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-left p {
    margin: 0;
}

.footer-right {
    display: flex;
    gap: 15px;
}

.footer-icon {
    color: white;
    font-size: 20px;
    transition: color 0.3s ease;
}

.footer-icon:hover {
    color: #fff6ae;
}
@media screen and (max-width: 480px) {
    header {
        height: 80px;
        padding: 10px;
        position: relative;
    }

    .containerum {
        display: none;
    }

    .text-container {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        height: 100%;
    }

    .text-container h1 {
        font-size: 2.5rem;
        margin-left: 10px;
        text-align: center;
        font-weight: bold;
    }

    .text-container h3 {
        font-size: 1rem;
        margin-left: 10px;
        text-align: center;
        color: #2f2f2f;
        font-weight: 300;
    }

    header .flower-icon {
        width: 40px;
        height: 40px;
        position: absolute;
        left: 10px;
        top: 50%;
        transform: translateY(-50%);
    }

    nav ul {
        flex-direction: row;
        justify-content: center;
        margin-top: 10px;
    }

    nav ul li {
        margin: 0 10px;
    }

    nav ul li a {
        font-size: 1rem;
        padding: 8px;
        text-transform: none;
    }

    nav ul li a:hover {
        color: #408726;
        transform: translateY(-2px);
    }

    .timeline-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .timeline-item {
        width: 90%;
        margin-bottom: 20px;
        height: auto;
    }

    .timeline-item img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-radius: 8px;
        margin-bottom: 15px;
    }

    .timeline-item h3 {
        font-size: 1.2rem;
    }

    .timeline-item p {
        font-size: 1rem;
        color: #333;
    }

    .btn-plano {
        font-size: 1rem;
        padding: 8px 15px;
    }

    .planos-container {
        flex-direction: column;
        align-items: center;
    }

    .planos-item {
        width: 90%;
        padding: 15px;
    }

    .planos-item h3 {
        font-size: 1.2rem;
    }

    .planos-item .preco {
        font-size: 1.2rem;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-left p {
        margin-bottom: 10px;
    }

    .footer-right {
        margin-top: 10px;
        display: flex;
        justify-content: center;
        gap: 15px;
    }

    .footer-icon {
        font-size: 18px;
        margin: 5px;
    }
}
