:root {
    --primary-color: #333;
    --secondary-color: #666;
    --accent-color: #e75f87;
    --background-color: #f8f8f8;
    --border-color: #eee;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #fff;
    padding-top: 51px;
}

.product-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
}

.product-image {
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.image-slider {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.image-slider img {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.image-slider img.active {
    opacity: 1;
    position: relative;
}

.image-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}

.dot {
    width: 8px;
    height: 8px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    cursor: pointer;
}

.dot.active {
    background: #000;
}

.product-info {
    padding: 0;
    max-width: 1200px;
    margin: 0 auto;
}

h1 {
    font-size: 28px;
    color: #333;
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.2;
}

.code-rating {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    margin-bottom: 25px;
}

.code {
    color: #666;
    font-size: 15px;
}

.rating {
    display: flex;
    align-items: center;
    gap: 3px;
}

.rating i {
    color: #FFB700;
    font-size: 16px;
}

.rating a {
    color: #666;
    text-decoration: none;
    font-size: 15px;
    margin-left: 8px;
}

.price-info {
    margin: 30px 0;
}

.price-promotion {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
}

.original-price {
    color: #999;
    font-size: 20px;
    text-decoration: line-through;
}

.discount-tag {
    background: #e75f87;
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
}

.main-price {
    font-size: 42px;
    color: #e75f87;
    font-weight: 500;
    margin-bottom: 10px;
}

.payment-options {
    color: #666;
    font-size: 16px;
    line-height: 1.5;
}

.pix-price {
    color: #333;
    margin-bottom: 5px;
}

.buy-button {
    width: 100%;
    padding: 15px;
    background: #5FBFAB;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 15px 0;
    cursor: pointer;
}

.shipping-calc {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #eee;
}

.calc-header {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.calc-header i {
    color: #666;
    font-size: 22px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.calc-header input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    color: #666;
}

.calc-header button {
    width: 100%;
    padding: 12px 25px;
    background: #666;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
}

@media (max-width: 768px) {
    /* Header */
    .header {
        padding: 12px 0;
    }
    
    .logo img {
        height: 30px;
    }

    /* Container e imagem */
    .product-container {
        padding: 0;
    }

    .product-image {
        margin-bottom: 0;
        background: white;
    }

    .image-slider {
        max-width: 100%;
    }

    .image-dots {
        bottom: 15px;
        gap: 10px;
    }

    .dot {
        width: 8px;
        height: 8px;
        background: rgba(255, 255, 255, 0.5);
    }

    .dot.active {
        background: white;
    }

    /* Informações do produto */
    .product-info {
        padding: 20px 15px;
        background: white;
        margin-top: -10px;
        border-radius: 15px 15px 0 0;
        box-shadow: 0 -5px 15px rgba(0,0,0,0.05);
    }

    h1 {
        font-size: 22px;
        margin-bottom: 15px;
        line-height: 1.3;
    }

    .code-rating {
        margin-bottom: 20px;
        padding-bottom: 12px;
    }

    /* Preços */
    .price-promotion {
        margin-bottom: 8px;
    }

    .original-price {
        font-size: 18px;
    }

    .discount-tag {
        font-size: 13px;
        padding: 4px 10px;
    }

    .main-price {
        font-size: 32px;
        margin-bottom: 8px;
    }

    .payment-options {
        font-size: 14px;
    }

    /* Botão de compra */
    .buy-button {
        width: 100%;
        padding: 12px;
        font-size: 16px;
        border-radius: 8px;
        margin: 12px 0;
        background: linear-gradient(45deg, #55b3a0, #5FBFAB);
        box-shadow: 0 2px 10px rgba(95, 191, 171, 0.2);
    }

    /* Calculadora de frete */
    .shipping-calc {
        margin-top: 25px;
        padding: 20px;
        background: #f8f8f8;
        border-radius: 8px;
        margin-left: -15px;
        margin-right: -15px;
    }

    .calc-header {
        gap: 10px;
    }

    .calc-header input {
        padding: 12px 15px;
        border-radius: 6px;
    }

    .calc-header button {
        padding: 12px 20px;
        border-radius: 6px;
    }

    /* Seções de conteúdo */
    .description-section,
    .technical-section,
    .shipping-info-section,
    .important-info-section {
        margin-top: 20px;
        padding: 25px 0;
        background: #f8f8f8;
    }

    .section-title {
        margin-bottom: 20px;
    }

    .section-title h2 {
        font-size: 20px;
    }

    .description-content,
    .technical-content,
    .shipping-info-content,
    .important-info-content {
        background: white;
        border-radius: 8px;
        padding: 20px;
        margin: 0 15px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }

    /* Ficha técnica */
    .tech-row {
        margin-bottom: 8px;
        border-radius: 6px;
        overflow: hidden;
    }

    .tech-label {
        padding: 12px 15px;
        font-size: 13px;
        background: #f5f5f5;
        font-weight: 600;
    }

    .tech-value {
        padding: 12px 15px;
        font-size: 13px;
    }

    /* Newsletter */
    .newsletter {
        padding: 30px 15px;
        background: linear-gradient(45deg, #e75f87, #ec7096);
    }

    .newsletter-content {
        gap: 15px;
    }

    .newsletter-info h3 {
        font-size: 18px;
    }

    .newsletter-form {
        gap: 8px;
    }

    .newsletter-form input {
        padding: 14px;
        border-radius: 6px;
    }

    .newsletter-form button {
        padding: 14px;
        border-radius: 6px;
        font-weight: 600;
    }

    /* Footer */
    .footer {
        padding: 25px 15px;
        background: #f8f8f8;
    }

    .footer p {
        color: #888;
        line-height: 1.8;
    }
}

@media (max-width: 360px) {
    h1 {
        font-size: 20px;
    }

    .main-price {
        font-size: 32px;
    }

    .section-title h2 {
        font-size: 18px;
    }
}

.header {
    background-color: #FFF7F4;
    padding: 8px 0;
    border-bottom: 1px solid #f5f5f5;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.logo {
    text-align: center;
}

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

.description-section {
    margin-top: 40px;
    padding-top: 20px;
    width: 100%;
    background: white;
}

.section-title {
    width: 100%;
    margin: 0 0 30px 0;
    padding: 0 15px;
    position: relative;
    display: flex;
    align-items: flex-end;
}

.section-title h2 {
    font-size: 20px;
    color: #333;
    font-weight: 500;
    padding-bottom: 10px;
    margin-bottom: -2px;
}

.pink-line {
    position: absolute;
    bottom: 0;
    left: 15px;
    width: 120px;
    height: 2px;
    background: #e75f87;
}

.description-content {
    width: 95%;
    margin: 0 auto;
    padding: 20px 0;
}

.description-content h3 {
    font-size: 18px;
    color: #333;
    font-weight: 500;
    margin-bottom: 20px;
}

.description-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.description-content p:last-child {
    margin-bottom: 0;
}

.technical-section {
    margin-top: 40px;
    padding-top: 20px;
    width: 100%;
    background: white;
}

.technical-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.tech-row {
    display: flex;
    border-bottom: 1px solid #f5f5f5;
}

.tech-row:nth-child(odd) {
    background: #f8f8f8;
}

.tech-label {
    width: 200px;
    padding: 15px 20px;
    color: #666;
    font-size: 16px;
    font-weight: 500;
}

.tech-value {
    flex: 1;
    padding: 15px 20px;
    color: #333;
    font-size: 16px;
}

@media (max-width: 768px) {
    .tech-row {
        flex-direction: column;
    }
    
    .tech-label {
        width: 100%;
        background: #f5f5f5;
        padding: 10px 15px;
    }
    
    .tech-value {
        padding: 10px 15px;
    }
}

.shipping-info-section {
    margin-top: 40px;
    padding-top: 20px;
    width: 100%;
    background: white;
}

.shipping-info-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.shipping-info-content .attention {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.shipping-info-content ol {
    list-style: none;
    counter-reset: item;
    padding-left: 0;
}

.shipping-info-content li {
    counter-increment: item;
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.shipping-info-content li:before {
    content: counter(item) ".";
    position: absolute;
    left: 0;
    color: #666;
    font-weight: 500;
}

@media (max-width: 768px) {
    .shipping-info-content li {
        margin-bottom: 12px;
        padding-left: 25px;
    }

    .shipping-info-content li:last-child {
        margin-bottom: 0;
    }
}

.important-info-section {
    margin-top: 40px;
    padding-top: 20px;
    width: 100%;
    background: white;
}

.important-info-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.important-info-content ol {
    list-style-position: outside;
    padding-left: 20px;
}

.important-info-content li {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    padding-left: 10px;
}

.important-info-content li:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .important-info-content {
        padding: 0 15px;
    }
    
    .important-info-content ol {
        padding-left: 35px;
    }
}

.newsletter {
    background-color: #e75f87;
    padding: 30px 0;
    color: white;
}

.newsletter-content {
    width: 95%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.newsletter-info {
    width: 100%;
}

.newsletter-icon i {
    font-size: 32px;
    color: white;
}

.newsletter-info h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 5px;
}

.newsletter-info p {
    font-size: 14px;
    opacity: 0.9;
}

.newsletter-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter-form input,
.newsletter-form button {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
}

.newsletter-form input::placeholder {
    color: #999;
    font-style: italic;
}

.newsletter-form button {
    width: 100%;
    padding: 14px;
    background: white;
    color: #666;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

.newsletter-result {
    width: 100%;
    margin-top: 15px;
}

.success-info {
    width: 100%;
    background: white;
    border-radius: 6px;
    padding: 16px;
    border: 1px solid #eee;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

@media (max-width: 768px) {
    .newsletter-content,
    .newsletter-result {
        width: 90%;
    }
}

.success-message {
    color: #5FBFAB;
    font-size: 14px;
    margin-bottom: 8px;
}

.success-text {
    color: #666;
    font-size: 13px;
}

.footer {
    padding: 20px;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer p {
    color: #666;
    font-size: 12px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .newsletter-content {
        width: 90%;
    }
} 

/* Remover containers e ajustar larguras */
.description-section,
.technical-section,
.shipping-info-section,
.important-info-section {
    width: 100%;
    margin-top: 20px;
    padding-top: 10px;
    background: white;
}

.section-title {
    width: 100%;
    margin: 0 0 15px 0;
    padding: 0 15px;
    position: relative;
}

.description-content,
.technical-content,
.shipping-info-content,
.important-info-content {
    width: 100%;
    margin: 0;
    padding: 0 15px 15px;
}

/* Ajuste para mobile */
@media (max-width: 768px) {
    .description-section,
    .technical-section,
    .shipping-info-section,
    .important-info-section {
        margin-top: 15px;
        padding-top: 8px;
    }

    .section-title {
        margin: 0 0 12px 0;
    }

    .description-content,
    .technical-content,
    .shipping-info-content,
    .important-info-content {
        padding: 0 15px 12px;
    }
} 

/* Estilos para o resultado do frete */
.frete-result {
    margin-top: 15px;
}

.frete-info {
    background: white;
    border-radius: 6px;
    padding: 16px;
    border: 1px solid #eee;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.cidade {
    color: #333;
    font-size: 14px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cidade::before {
    font-family: "Font Awesome 5 Free";
    content: "\f3c5"; /* Ícone de localização */
    font-weight: 900; /* Importante: adicionar font-weight para ícones sólidos */
    color: #666;
    font-size: 14px;
    display: inline-block; /* Garante que o ícone seja exibido corretamente */
}

.frete-details {
    display: flex;
    align-items: center;
    gap: 20px;
}

.frete-gratis {
    color: #5FBFAB;
    font-weight: 500;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.frete-gratis::before {
    font-family: "Font Awesome 5 Free";
    content: "\f0d1"; /* Ícone de caminhão */
    font-weight: 900;
    display: inline-block;
}

.prazo {
    color: #666;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.prazo::before {
    font-family: "Font Awesome 5 Free";
    content: "\f017"; /* Ícone de relógio */
    font-weight: 900;
    display: inline-block;
}

.erro {
    color: #e75f87;
    font-size: 13px;
    padding: 12px;
    background: white;
    border: 1px solid rgba(231, 95, 135, 0.2);
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.erro::before {
    font-family: "Font Awesome 5 Free";
    content: "\f071"; /* Ícone de alerta */
    font-weight: 900;
    display: inline-block;
}

/* Ajustes para mobile */
@media (max-width: 768px) {
    .frete-info {
        margin: 0;
        border-radius: 6px;
    }
    
    .frete-details {
        flex-direction: row;
        align-items: center;
        gap: 15px;
    }
} 

/* Estilo para mensagem de sucesso do newsletter */
.newsletter-result {
    margin-top: 15px;
    width: 100%;
    max-width: 1200px;
    margin: 15px auto 0;
}

.success-info {
    color: #ffffff;
    margin-top: 15px;
    width: 100%;
    max-width: 1200px;
    margin: 15px auto 0;
}

.success-message {
    color: #5FBFAB;
    font-size: 14px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.success-message::before {
    font-family: "Font Awesome 5 Free";
    content: "\f00c"; /* Ícone de check */
    font-weight: 900;
    display: inline-block;
}

.success-details {
    display: flex;
    align-items: center;
    gap: 10px;
}

.success-text {
    color: #666;
    font-size: 13px;
}

/* Ajustes para mobile */
@media (max-width: 768px) {
    .newsletter-content {
        width: 90%;
    }

    .newsletter-result {
        width: 90%;
    }

    .success-info {
        margin: 0;
        border-radius: 6px;
    }
} 

.frete-title {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    margin-bottom: 5px;
}

.frete-title span {
    font-size: 14px;
    font-weight: 500;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

/* Ajustes para os containers de texto */
.description-content,
.technical-content,
.shipping-info-content,
.important-info-content {
    width: 100%;
    padding: 0 15px 15px;
}

/* Estilos específicos para mobile */
@media (max-width: 768px) {
    .description-content h3 {
        font-size: 16px;
        margin-bottom: 15px;
        color: #333;
        font-weight: 500;
    }

    .description-content p,
    .shipping-info-content p,
    .important-info-content li {
        font-size: 14px;
        line-height: 1.6;
        color: #666;
        margin-bottom: 12px;
    }

    /* Ficha técnica */
    .tech-row {
        background: #fff;
        border-radius: 6px;
        margin-bottom: 8px;
        box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    }

    .tech-label {
        padding: 12px 15px;
        font-size: 13px;
        background: #f8f8f8;
        color: #666;
        font-weight: 500;
        border-radius: 6px 6px 0 0;
    }

    .tech-value {
        padding: 12px 15px;
        font-size: 14px;
        color: #333;
    }

    /* Prazo de envio */
    .shipping-info-content .attention {
        font-weight: 500;
        margin-bottom: 15px;
        color: #333;
    }

    .shipping-info-content ol,
    .important-info-content ol {
        padding-left: 16px;
    }

    .shipping-info-content li,
    .important-info-content li {
        margin-bottom: 12px;
        padding-left: 8px;
    }

    .shipping-info-content li:last-child,
    .important-info-content li:last-child {
        margin-bottom: 0;
    }

    /* Títulos das seções */
    .section-title {
        margin-bottom: 15px;
    }

    .section-title h2 {
        font-size: 18px;
        color: #333;
    }
}

@media (max-width: 768px) {
    /* Containers principais */
    .description-section,
    .technical-section,
    .shipping-info-section,
    .important-info-section {
        margin-top: 25px;
        padding: 0;
        background: none;
        width: 100%;
    }

    /* Conteúdo dos containers */
    .description-content,
    .technical-content,
    .shipping-info-content,
    .important-info-content {
        background: white;
        border-radius: 6px;
        padding: 12px 8px;
        margin: 0 auto;
        box-shadow: 0 1px 4px rgba(0,0,0,0.05);
        width: 100%;
    }

    /* Ajuste para informações importantes */
    .important-info-content ol {
        padding-left: 20px;
        margin: 0;
    }

    .important-info-content li {
        padding-left: 5px;
        margin-right: 5px;
    }

    /* Ajuste para prazo de envio */
    .shipping-info-section {
        background: none;
        padding: 0;
    }

    .shipping-info-content {
        background: white;
        width: 100%;
        margin: 0;
        padding: 12px 8px;
    }

    .shipping-info-content ol {
        padding-left: 15px;
    }
}

/* Ajuste para o prazo de envio */
.shipping-info-content {
    width: 100%;
    padding: 0 15px 15px;
}

.shipping-info-content .attention {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.shipping-info-content ol {
    list-style: none;
    counter-reset: item;
    padding-left: 0;
}

.shipping-info-content li {
    counter-increment: item;
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

.shipping-info-content li:before {
    content: counter(item) ".";
    position: absolute;
    left: 0;
    color: #666;
    font-weight: 500;
}

@media (max-width: 768px) {
    .shipping-info-section {
        margin-top: 30px;
        padding: 0;
        background: none;
        width: 100%;
    }

    .shipping-info-content {
        background: white;
        border-radius: 6px;
        padding: 12px 8px;
        margin: 0;
        box-shadow: 0 1px 4px rgba(0,0,0,0.05);
        width: 100%;
    }
}