
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: radial-gradient(circle at top, #1a1a3b 0%, #050816 40%, #000000 100%);
    color: #f5f7ff;
}

p{
    font-family: "IBM Plex Serif", serif;
  font-weight: 600;
  font-style: normal;
}
.container {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
}


.cabecalho {
    width: 100%;
    height: 90px;
    background: linear-gradient(90deg, #FF0000, #FFA500, #959703, #008000, #0000FF, #4B0082, #8A2BE2);
    background-size: 300% 300%;
    animation: headerGradient 15s ease infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    z-index: 1000;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.55);
}

@keyframes headerGradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.cabecalho-conteudo {
    width: 90%;
    max-width: 1300px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s ease;
}

.logo-area:hover {
    transform: translateY(-3px);
}

.logo-area img {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.85);
}

.logo-texto h1 {
    font-size: 28px;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 0 0 12px rgba(0, 0, 0, 0.5);
    font-family: "Archivo Black", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 35px;
}

.logo-texto span {
    font-size: 14px;
    color: #f0f0f0;
    font-family: "Tomorrow", sans-serif;
  font-weight: 500;
  font-style: italic;
  font-size: 18px;
}


.menu a {
    margin-left: 20px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    color: #ffffff;
    position: relative;
    transition: color 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  font-family: "Tomorrow", sans-serif;
  font-weight: 500;
  font-style: italic;
  font-size: 18px;
}

.menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0%;
    height: 2px;
    border-radius: 4px;
    background: linear-gradient(90deg, #FF0000, #FFA500, #9b9b02, #008000, #0000FF, #4B0082, #8A2BE2);
    transition: width 0.25s ease;
}

.menu a:hover {
    color: #ff0000;
}

.menu a:hover::after {
    width: 100%;
}

.carrossel {
    margin-top: 90px;
    width: 100%;
    height: calc(100vh - 90px);
    min-height: 600px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.8);
}

.carrossel-inner {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    display: none;
}

.slide.ativo {
    display: block;
    animation: fadeSlide 1.2s ease-in-out;
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: scale(1.04);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.35);
    transform: scale(1.08);
    animation: zoomBackground 18s ease-in-out infinite alternate;
}

@keyframes zoomBackground {
    from {
        transform: scale(1.08) translateY(0px);
    }

    to {
        transform: scale(1.02) translateY(-10px);
    }
}

.slide-texto {
    position: absolute;
    top: 50%;
    left: 6%;
    transform: translateY(-50%);
    color: #ffffff;
    max-width: 650px;
    animation: slideTextIn 1.2s ease-out;
}

@keyframes slideTextIn {
    from {
        opacity: 0;
        transform: translate(-20px, -40%);
    }

    to {
        opacity: 1;
        transform: translate(0, -50%);
    }
}

.slide-texto h2 {
    font-size: 52px;
    font-weight: 900;
    line-height: 1.1;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
      font-family: "Diplomata", serif;
  font-weight: 400;
  font-style: normal;
}

.slide-texto p {
    font-size: 22px;
    margin-top: 12px;
    text-align: left;
    color: #f5f5f5;
    font-family: "TASA Explorer", sans-serif;
  font-optical-sizing: auto;
  font-weight: 750;
  font-style: normal;
  font-size: 20px;
}

.carrossel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 36px;
    font-weight: bold;
    background: rgba(5, 8, 22, 0.7);
    border: 2px solid rgba(255, 255, 255, 0.5);
    height: 70px;
    width: 70px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.25s ease;
    backdrop-filter: blur(8px);
    color: #ffffff;
}

.carrossel-btn:hover {
    border-color: #FFFF00;
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 0 18px rgba(255, 255, 255, 0.6);
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

.carrossel-indicadores {
    position: absolute;
    bottom: 25px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.indicador {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: 0.3s ease;
}

.indicador.ativo {
    background: linear-gradient(135deg, #FF0000, #FFA500, #FFFF00, #008000, #0000FF, #4B0082, #8A2BE2);
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.secao {
    padding: 90px 0;
}

.secao:nth-of-type(even) {
    background: radial-gradient(circle at top, rgba(75, 0, 130, 0.18), transparent 65%);
}

.secao:nth-of-type(odd) {
    background: radial-gradient(circle at top, rgba(0, 0, 255, 0.18), transparent 65%);
}

.secao h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    background: linear-gradient(90deg, #FF0000, #FFA500, #FFFF00, #008000, #0000FF, #4B0082, #8A2BE2);
    -webkit-background-clip: text;
    color: transparent;
    margin-top: 25px;

      font-family: "Diplomata", serif;
  font-weight: 400;
  font-style: normal;
}

.secao h3 {
    margin-top: 40px;
    font-size: 28px;
    text-align: center;
    color: #f5f7ff;
}

.secao-descricao {
    max-width: 650px;
    margin: 0 auto;
    margin-top: 5px;
    font-size: 16px;
    color: #cbd2ff;
}

.Sobre p {
    max-width: 800px;
    margin: 25px auto 0;
    font-size: 16px;
    line-height: 1.7;
    color: #d0d4ff;
}


.produtos-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.card-produto {
    background: linear-gradient(145deg, #070b16, #0b1020);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
    transition: 0.35s ease;
    border: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
}

.card-produto::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(135deg, #FF0000, #FFA500, #FFFF00, #008000, #0000FF, #4B0082, #8A2BE2);
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.card-produto:hover::before {
    opacity: 1;
}

.card-produto:hover {
    transform: translateY(-10px) scale(1.02);
}

.card-produto img {
    width: 100%;
    height: 230px;
    object-fit: contain;
    background: radial-gradient(circle at top, #1a1a3b 0%, #050816 70%);
}

.card-conteudo {
    padding: 18px 18px 20px;
}

.card-titulo {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #ffffff;
}

.card-descricao {
    font-size: 14px;
    color: #c5cae9;
    margin-bottom: 14px;
    text-align: left;
}

.card-preco {
    font-size: 20px;
    font-weight: 800;
    color: #FFFF00;
    margin-bottom: 15px;
}

.card-botao {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 999px;
    background: linear-gradient(90deg, #FF0000, #FFA500, #FFFF00, #008000, #0000FF, #4B0082, #8A2BE2);
    background-size: 300% 300%;
    color: #050816;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.25s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 5;
}

.card-botao:hover {
    background-position: 100% 0;
    transform: translateY(-2px);
    box-shadow: 0 0 16px rgba(255, 255, 255, 0.45);
}

button{
    font-family: "Geo", sans-serif;
  font-weight: 400;
  font-style: normal;

}


.menu a[href="#compras"] {
    position: relative;
}

.contador-carrinho {
    background: red;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -8px;
    right: -8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.carrinho {
    position: fixed;
    top: 80px;
    right: 20px;
    width: 320px;
    max-height: 450px;
    background: linear-gradient(135deg, #0a0f3d, #1e1f5c);
    border: 2px solid #6a6fb8;
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.8);
    padding: 25px;
    display: none;
    flex-direction: column;
    overflow-y: auto;
    z-index: 2000;
    transition: all 0.3s ease-in-out;
}

.carrinho h3 {
    font-size: 22px;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 15px;
    text-align: center;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.carrinho ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.carrinho li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 15px;
    color: #ffffff;
    padding: 6px 10px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    transition: background 0.3s;
}

.carrinho li:hover {
    background: rgba(255, 255, 255, 0.15);
}


.carrinho button {
    background: #6a6fb8;
    border: none;
    color: #fff;
    font-weight: bold;
    padding: 4px 8px;
    margin: 0 2px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.carrinho button:hover {
    background: #a1a4f5;
    transform: scale(1.1);
}

.carrinho button.remover {
    background: #ff4d4d;
}

.carrinho button.remover:hover {
    background: #ff8080;
}

.carrinho .total {
    margin-top: 15px;
    font-weight: 800;
    font-size: 18px;
    color: #FFD700;
    text-align: right;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

#finalizar-compra {
    margin-top: 15px;
    padding: 10px 15px;
    background-color: #28a745;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
}

#finalizar-compra:hover {
    background-color: #5cd65c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}



.orcamento-container {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    align-items: flex-start;
    margin-top: 30px;
}

.form-orcamento {
    flex: 1;
    background: rgba(5, 8, 22, 0.9);
    padding: 28px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-orcamento h3 {
    font-size: 22px;
    font-weight: 700;
    color: #ffeb3b;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.form-orcamento input,
.form-orcamento textarea,
.form-orcamento select {
    padding: 14px;
    border-radius: 12px;
    background: #050816;
    border: 1px solid #3b3f5f;
    font-size: 16px;
    color: #ffffff;
    transition: 0.25s ease;
}

.form-orcamento input::placeholder,
.form-orcamento textarea::placeholder {
    color: #8d91ad;
}

.form-orcamento input:focus,
.form-orcamento textarea:focus,
.form-orcamento select:focus {
    border-color: #FFFF00;
    box-shadow: 0 0 12px rgba(255, 255, 0, 0.5);
}

.campo-file {
    background: #050816;
    border: 1px dashed #6a6fb8;
    padding: 22px;
    text-align: center;
    border-radius: 14px;
    cursor: pointer;
    color: #cbd2ff;
    transition: 0.25s ease;
    font-size: 15px;
}

.campo-file:hover {
    border-color: #FFFF00;
    color: #FFFF00;
    box-shadow: 0 0 12px rgba(255, 255, 0, 0.4);
}

.campo-file input {
    display: none;
}

.form-orcamento button {
    padding: 16px;
    border: none;
    border-radius: 999px;
    font-size: 17px;
    font-weight: 800;
    background: linear-gradient(90deg, #FF0000, #FFA500, #FFFF00, #008000, #0000FF, #4B0082, #8A2BE2);
    background-size: 260% 260%;
    color: #050816;
    cursor: pointer;
    transition: 0.25s ease;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.form-orcamento button:hover {
    background-position: 100% 0;
    box-shadow: 0 0 18px rgba(255, 255, 255, 0.55);
}


.orcamento-info {
    flex: 1;
}

.orcamento-info ul {
    list-style: none;
    margin-top: 15px;
}

.orcamento-info li {
    font-size: 15px;
    margin: 10px 0;
    color: #dde2ff;
}

.orcamento-info strong {
    color: #FFFF00;
}


.rodape {
    text-align: center;
    padding: 22px;
    background: #050816;
    color: #cbd2ff;
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.rodape a {
    color: #cbd2ff;
    text-decoration: none;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

@media (max-width: 1100px) {
    .cabecalho-conteudo {
        width: 95%;
    }

    .slide-texto h2 {
        font-size: 42px;
    }

    .slide-texto p {
        font-size: 20px;
    }

    .card-produto img {
        height: 200px;
    }
}

@media (max-width: 900px) {
    .cabecalho {
        height: 80px;
        padding: 0 15px;
    }

    .logo-texto h1 {
        font-size: 20px;
    }

    .logo-area img {
        width: 50px;
        height: 50px;
    }

    .menu a {
        font-size: 14px;
        margin-left: 8px;
    }

    .carrossel {
        height: 100vh;
        margin-top: 0;
        border-radius: 0;
    }

    .slide-texto {
        max-width: 90%;
        left: 5%;
    }

    .slide-texto h2 {
        font-size: 32px;
    }

    .slide-texto p {
        font-size: 16px;
    }

    .carrossel-btn {
        height: 60px;
        width: 60px;
        font-size: 28px;
    }

    .produtos-grid {
        grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 700px) {
    .cabecalho {
        height: 75px;
        padding: 0 10px;
    }

    .logo-area img {
        width: 50px;
        height: 50px;
    }

    .logo-texto h1 {
        font-size: 18px;
    }

    .menu a {
        font-size: 13px;
        margin-left: 6px;
    }

    .carrossel {
        height: 100vh;
        margin-top: 0;
        border-radius: 0;
    }

    .slide-texto {
        left: 5%;
        right: 5%;
    }

    .slide-texto h2 {
        font-size: 26px;
        line-height: 1.2;
    }

    .slide-texto p {
        font-size: 16px;
        margin-top: 10px;
    }

    .carrossel-btn {
        display: none;
    }

    .produtos-grid {
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }

    .card-produto img {
        height: 150px;
    }

    .card-titulo {
        font-size: 18px;
    }

    .card-preco {
        font-size: 18px;
    }

    .form-orcamento {
        padding: 20px;
    }
}

@media (max-width: 500px) {
    .cabecalho {
        height: 70px;
    }

    .logo-texto h1 {
        font-size: 16px;
    }

    .menu a {
        font-size: 12px;
        margin-left: 5px;
    }

    .produtos-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .card-produto img {
        height: 180px;
    }

    .slide-texto h2 {
        font-size: 22px;
    }

    .slide-texto p {
        font-size: 14px;
    }

    .secao {
        padding: 50px 0;
    }

    .form-orcamento {
        padding: 18px;
    }
}

@media (max-width: 380px) {
    .logo-area img {
        width: 45px;
        height: 45px;
    }

    .logo-texto h1 {
        font-size: 14px;
    }

    .menu a {
        font-size: 11px;
        margin-left: 4px;
    }

    .slide-texto h2 {
        font-size: 20px;
    }

    .slide-texto p {
        font-size: 13px;
    }

    .card-produto img {
        height: 150px;
    }

    .form-orcamento {
        padding: 15px;
    }
}


