@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;700;800&display=swap");



/* CSS for section section:header */
.site-header {
    background-color: var(--background-light);
}

.top-bar {
    background-color: #001325;
    color: var(--text-light);
    padding: 5px 0;
}

.top-bar-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.top-bar-text {
    font-family: 'Rajdhani', sans-serif;
    font-size: 18.89px;
    font-weight: 500;
    letter-spacing: 3.78px;
    margin: 0;
}

.social-media {
    position: absolute;
    right: 20px;
    display: flex;
    gap: 20px;
    align-items: center;
}

.social-media img {
    height: 21px;
}

.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 20px;
}

.logo img {
    width: 232px;
    height: auto;
}

.main-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 40px;
}

.main-nav a {
    font-family: 'Rajdhani', sans-serif;
    font-size: 21px;
    font-weight: 600;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    font-weight: 700;
}

.contact-item img {
    height: 24px;
}

.whatsapp-btn {
    padding: 8px 16px;
    gap: 10px;
}

.whatsapp-btn img {
    height: 24px;
}

@media (max-width: 1200px) {
    .main-nav {
        display: none;
    }
}

@media (max-width: 992px) {
    .header-contact {
        display: none;
    }

    .main-header {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .top-bar-text {
        font-size: 14px;
        letter-spacing: 2px;
    }

    .social-media {
        display: none;
    }
}

/* CSS for section section:hero */

.hero-section {
    background-image: url('./images/icons/BGHERO.svg');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-content {
    flex: 1;
}


.slider-container {
    width: 538px;
    height: 546px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 12px 12px 12px rgba(0, 0, 0, 0.1);
}

.slider-inner {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.7s ease-in-out;
}

.slide {
    min-width: 100%;
    height: 100%;
    flex-shrink: 0;
}

.slide img {
    width: 538px;
    height: 546px;
    object-fit: cover;

}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;

}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ffffff;
    opacity: 0.7;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.2);
}

/* Estilo da bolinha ativa (do slide atual) */
.dot.active {
    background-color: var(--primary-color);
    opacity: 1;
    transform: scale(1.2);
    border-color: var(--primary-color);
}

@media (max-width: 992px) {
    /* Ajuste para Tablets e Celulares */

    .slider-container {
        width: 80%;
        max-width: 500px;
        height: auto;
        aspect-ratio: 538 / 546;
        margin-top: 50px;
        margin-bottom: 20px;
    }


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


    .slide {
        min-width: 100%;
    }
}

@media (max-width: 576px) {

    .slider-container {
        width: 90%;
        margin-top: 40px;
    }
}

.hero-content h1 {
    font-size: 54px;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.hero-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text-dark);
}

.hero-buttons {
    margin-top: 40px;
    display: flex;
    gap: 20px;
}

.hero-buttons .btn {
    gap: 10px;
}

.hero-buttons .btn-secondary img {
    width: 35px;
}

.hero-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-stack {
    position: relative;
    width: 538px;
    height: 546px;
}

.hero-image-stack img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero-image-stack .hero-frame-img {
    top: -4px;
    left: 0;
    width: 517px;
    height: 521px;
}

.hero-image-btn {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 446px;
}

@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image-wrapper {
        margin-top: 40px;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 40px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-image-stack {
        width: 100%;
        height: auto;
        aspect-ratio: 538 / 546;
    }

    .hero-image-btn {
        width: 80%;
    }
}

/* CSS for section section:services */
.services-section {
    background-size: cover;
    background-position: center;
    padding: 80px 0;

}

.section-title {
    padding: 30px;
    text-align: center;
    font-size: 40px;
    color: var(--text-dark);
    margin-bottom: 60px;
}

.services-cards-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    align-items: stretch;
    padding-bottom: 30px-;
}



.service-card {
    position: relative;
    width: 552px;
    border-radius: 90px;
    border: 5px solid var(--primary-color);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 40px;
    box-sizing: border-box;
    color: #000;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 70%);
    border-radius: 90px;
    z-index: -1;
}

.service-card>img {
    filter: brightness(90%);
    background-color: white;
}

.service-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.service-card-content {
    display: flex;
    text-align: center;
    flex-direction: column;
    gap: 10px;
    flex-grow: 1;
}

.service-card h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Roboto', sans-serif;
    font-size: 70px;
    margin: 0 0 20px 0;
}


.service-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 21px;
    font-weight: 700;
    margin: 0 0 15px 0;
}

.service-card p {
    font-family: 'Montserrat', sans-serif;
    font-size: 21px;
    font-weight: 600;
    line-height: 1.5;
    margin: 0 0 30px 0;
}


.service-card-btn {
    font-size: 24px;
    width: 400px;
    height: 65px;
    gap: 15px;
    align-self: center;
    margin-top: auto;
}

.services-cards-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    padding: 20px;
}

.service-card-modern {
    position: relative;
    width: 400px;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    cursor: pointer;
    background-color: #000;

}


.service-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}


.card-image {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;

}


.service-card-modern:hover .card-image img {
    transform: scale(1.1);
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    box-sizing: border-box;
    z-index: 2;
    color: #fff;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.6), transparent);
}

.card-content h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 5px;
    color: #218fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-content h4 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 15px;
    opacity: 0.9;
}

.card-content p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
    opacity: 0.8;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.btn-card {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: 14px;
    text-transform: uppercase;
}

.btn-card:hover {
    background-color: #fff;
    color: var(--primary-color);
}

.btn-card i {
    margin-left: 5px;
}

@media screen and (max-width: 768px) {
    .service-card-modern {
        width: 100%;
        height: 450px;
    }

    .card-content h3 {
        font-size: 24px;
    }
}

/* --- RESPONSIVIDADE --- */
@media (max-width: 768px) {
    .service-card-modern {
        width: 100%;
        /* No celular ocupa a largura toda */
        height: 450px;
    }

    .card-content h3 {
        font-size: 24px;
    }
}

@media (max-width: 1200px) {
    .services-cards-container {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .service-card {
        width: 100%;
        height: auto;
        padding: 30px;
    }

    .service-card h3 {
        display: flex;
        font-size: 50px;
    }

    .service-card h4,
    .service-card p {
        font-size: 18px;
    }

    .service-card-btn {
        width: 80%;
        font-size: 18px;
    }
}

/* CSS para a section:products */
.products-section {
    padding: 60px 0;
    background-color: var(--background-bluelight);
}

.products-section .section-title {
    font-size: 38px;
    margin-bottom: 10px;
}

.products-section .section-subtitle {
    text-align: center;
    font-size: 36px;
    color: var(--text-dark);
    margin-top: 0;
    margin-bottom: 60px;
}

.product-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.product-card {
    background-color: var(--background-light);
    border: 1px solid #dde1e6;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}


.product-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);

    border-color: var(--primary-color);
}


.product-card:hover .btn-primary {
    background-color: #0d5aab;
    transform: scale(1.05);

}

.product-card img {
    height: auto;
}

.product-content {
    padding: 24px 16px 16px;
    flex-grow: 1;
}

.product-content h4 {
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    margin: 0 0 16px 0;
}

.product-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.4;
    margin: 0;
}

.product-action {
    padding: 16px;
}

.product-action .btn {
    width: 164px;
    padding: 12px;
    justify-content: space-between;
}

.arrow-img {
    height: 24px;
    width: 24px;
}

.section-action {
    text-align: center;
    margin-top: 60px;
}

.section-action .btn {
    width: 270px;
    justify-content: space-between;

}

@media (max-width: 992px) {
    .product-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .product-cards-grid {
        grid-template-columns: 1fr;
    }
}


/* CSS para a section:about */
.about-section {
    background-size: cover;
    padding-bottom: 60px;
    background-position: center;
}

.about-section .section-title {
    font-size: 38px;
    margin-bottom: 60px;
}

.about-us-content {
    display: flex;
    gap: 40px;
    padding: 20px;
    align-items: center;
}

.about-us-image {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-basis: 45%;
}

.about-us-image img {
    display: flex;
    width: 80%;
    border-radius: 50px;
    border: 5px solid var(--primary-color);
}

.about-us-text {
    flex-basis: 55%;
    text-align: center;
}

.about-us-text h3 {
    font-size: 40px;
    margin-bottom: 30px;
}

.about-us-text p {
    font-size: 20px;
    line-height: 1.5;
    text-align: left;
    margin-bottom: 20px;
}

@media (max-width: 992px) {
    .about-us-content {
        flex-direction: column;
    }

    .about-us-text {
        text-align: center;
    }

    .about-us-text p {
        text-align: center;
    }
}

/* CSS para a section:features */
.features-section {
    padding: 80px 0;
}

.features-section .section-title {
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}

.feature-card img {
    width: 100%;
    height: 265px;
    object-fit: cover;
    margin-bottom: 20px;
}

.feature-card {
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    background-color: #fff;
    border-radius: 20px;
    padding: 20px;
    border: 1px solid transparent;
}

.feature-card img {
    transition: transform 0.3s ease-in-out;
}


.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.feature-card:hover img {
    transform: scale(1.05) rotate(3deg);
}

.feature-card h4 {
    font-size: 25px;
    color: #0a0930;
    min-height: 64px;
}

.feature-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #58595b;
}

.features-section .section-action {
    margin-top: 60px;
    text-align: center;
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card h4 {
        min-height: auto;
    }
}

/* CSS para a section:location */
.location-section {
    background-color: var(--background-bluelight);
    padding: 80px 0;
    background-size: cover;
    background-position: center;
    position: relative;
}

.location-title-wrapper {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.location-container {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 60px;
}

.location-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.location-content h3 {
    font-size: 38px;
    margin-bottom: 20px;
}

.location-content p {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.location-content .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.location-map {
    flex: 1;
}

iframe {
    border-radius: 20px;
}



@media (max-width: 992px) {
    .location-container {
        flex-direction: column;
    }

    .location-map {
        width: 70%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .location-title-wrapper {
        position: static;
        transform: none;
        text-align: center;
    }

    .location-container {
        margin-top: 20px;
    }
}

/* CSS for section section:footer */
.site-footer {
    background-color: var(--primary-color);
    background-size: cover;
    background-position: center;
    color: var(--text-light);
    padding: 60px 0 20px;
}

.footer-top h2 {
    font-size: 40px;
    margin: 0;
}

.footer-divider {
    border: 0;
    height: 1px;
    background-color: var(--text-light);
    margin: 40px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.footer-column h4 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 20px;
}

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

.footer-column ul li {
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-column ul li img {
    margin-top: 3px;
    width: 14px;
    height: 14px;
    object-fit: contain;
}

.footer-map-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

.footer-map-wrapper .btn {
    background-size: cover;
    background-color: transparent;
    border: none;
    color: var(--primary-color);
    height: 71px;
}


.footer-bottom {
    text-align: left;
    margin-top: 60px;
    padding-top: 20px;
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .footer-map-column {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .footer-map-column {
        grid-column: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .footer-bottom {
        text-align: center;
    }
}


/* cards instagram  */

.background-texture {
    background: -webkit-gradient(linear,
            left bottom,
            left top,
            from(#0f0140e6),
            to(rgba(255, 214, 117, 0.9)));
    background: linear-gradient(to top, #0f0140e6, rgba(255, 214, 117, 0.9));
    background-size: cover;
    width: 100%;
    height: 1000px;
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
}

.carousel {
    display: flex;
    justify-content: center;
    overflow-x: scroll;
    padding: 30px;
    padding-top: 80px;
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    flex-direction: column;
    padding-bottom: 80px;
    background-color: var(--background-bluelight);
    -ms-overflow-style: none;
    scrollbar-width: none;

}

.carousel::-webkit-scrollbar {
    display: none;
}


.carousel__container {
    white-space: nowrap;
    margin: 70px 0px;
    padding-bottom: 10px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.categories__title {
    color: var(--text-dark);
    font-size: 40px;
    display: flex;
    padding-left: 30px;
    justify-content: center;
}

.carousel-item {
    width: 250px;
    height: 290px;
    border-radius: 20px;
    background-color: #95bcd6;
    overflow: hidden;
    margin-right: 10px;
    margin-top: 70px;
    display: inline-block;
    cursor: pointer;
    -webkit-transition: 1000ms all;
    transition: 1000ms all;
    -webkit-transform-origin: center left;
    transform-origin: center left;
    position: relative;
}

.carousel-item:hover~.carousel-item {
    -webkit-transform: translate3d(100px, 0, 0);
    transform: translate3d(100px, 0, 0);
}

.carousel__container:hover .carousel-item {
    opacity: 0.3;
}

.carousel__container:hover .carousel-item:hover {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 1;
}

.carousel-item__img {
    width: 250px;
    height: 300px;
    -o-object-fit: cover;
    object-fit: cover;
}

.carousel-item__details {

    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.9) 0%,
            rgba(0, 0, 0, 0) 100%);
    opacity: 0;
    -webkit-transition: 450ms opacity;
    transition: 450ms opacity;
    padding: 10px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.carousel-item__details:hover {
    opacity: 1;
}

.carousel-item__details span {
    /* width: 10px;
  height: 10px; */
    font-size: 42px
        /* background-color: white; */
}

.carousel-item__details .controls {
    padding-top: 180px;
}

.carousel-item__details .carousel-item__details--title,
.carousel-item__details--subtitle {
    color: #fff;
    margin: 5px 0;
    width: 100%;
    height: auto;
}

.carousel-item__details--subtitle {
    font-size: 14px;
    font-weight: 500;
    text-decoration: underline;
}

/* =============================================
   AJUSTE FINO PARA PAGINA INSTAGRAM NO MOBILE
   ============================================= */

@media (max-width: 992px) {


    /* 1. Remove a rolagem horizontal */
    .carousel {
        overflow-x: hidden;
        /* Remove a rolagem e o espaço extra */
        margin-top: 0;
        padding-top: 40px;
    }

    /* 2. Define o layout de coluna e permite a quebra de linha */
    .carousel__container {
        flex-direction: column;
        align-items: center;
        white-space: normal;
        /* Permite que os itens quebrem para a "linha" de baixo (que agora é vertical) */
        gap: 30px;
        /* Adiciona um espaço entre os cards empilhados */
        margin: 0;
        padding: 20px 0px 0px 0px;
    }

    .carousel-item {
        margin-top: 0;
        margin-right: 0;
    }


    .carousel__container:hover .carousel-item:hover {
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }

    .carousel-item:hover~.carousel-item {
        -webkit-transform: none;
        transform: none;
    }

    .carousel__container:hover .carousel-item {
        opacity: 1;
    }
}


/* CSS para o botão flutuante do WhatsApp */

.btn-whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.btn-whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.4);
}


@media (max-width: 576px) {
    .btn-whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 25px;
        bottom: 20px;
        right: 20px;
    }
}

.btn-whatsapp-float {
    /* Adicione esta linha na classe que já criamos acima */
    animation: whatsapp-pulse 2s infinite;
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}