/* Reset */
body, h1, h2, h3, p, ul, li, a, img, input, button {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f5f5f5;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.site-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    padding: 15px 0;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    color: #007b5e;
    text-decoration: none;
    flex: 1;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 2;
}

.search-bar {
    flex: 1;
    padding: 8px 15px;
    border: 1px solid #ccc;
    border-radius: 20px;
    font-size: 1rem;
}

.cart {
    font-size: 1.2rem;
    color: #007b5e;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

.cart:hover {
    color: #00563d;
}

.main-menu {
    margin-top: 15px;
    text-align: center;
}

.main-menu ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 25px;
}

.main-menu a {
    text-decoration: none;
    color: #333;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-menu a:hover {
    color: #007b5e;
}

/* Main Content */
.product-page {
    margin-top: 20px;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.breadcrumbs {
    font-size: 0.9rem;
    margin-bottom: 15px;
    color: #666;
}

.product-details {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.product-gallery {
    flex: 1;
    min-width: 300px;
}

.main-image img {
    width: 100%;
    height: auto;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.thumbnail-gallery {
    margin-top: 10px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.thumbnail-gallery img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s, transform 0.3s;
}

.thumbnail-gallery img:hover {
    border-color: #007b5e;
    transform: scale(1.1);
}

.product-info {
    flex: 1;
    min-width: 300px;
}

.product-info h1 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #333;
}

.product-price {
    font-size: 1.8rem;
    color: #007b5e;
    font-weight: bold;
    margin-bottom: 15px;
}

.product-description {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #555;
    margin-top: 50px;
}

.buy-section {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.btn-buy, .btn-add-cart {
    background-color: #007b5e;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn-buy:hover, .btn-add-cart:hover {
    background-color: #00563d;
}

/* Footer */
.site-footer {
    margin-top: 40px;
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.site-footer a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
}

.site-footer a:hover {
    color: #007b5e;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .header-top {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .search-bar {
        width: 100%;
    }

    .product-details {
        flex-direction: column;
    }

    .main-menu ul {
        flex-wrap: wrap;
        gap: 15px;
    }

    .buy-section {
        flex-direction: column;
        gap: 10px;
    }

    .thumbnail-gallery img {
        width: 60px;
        height: 60px;
    }

    .product-info h1 {
        font-size: 1.5rem;
    }

    .product-price {
        font-size: 1.5rem;
    }
}
/* CSS Melhorado para .product-page */

/* Reset */
body, h1, h2, h3, p, ul, li, a, img, input, button {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Melhorando a .product-page */
.product-page {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

.breadcrumbs {
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 15px;
}

.product-details {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.product-gallery {
    flex: 1;
    min-width: 300px;
}

.main-image img {
    width: 100%;
    height: auto;
    border: 2px solid #e5e5e5;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.main-image img:hover {
    transform: scale(1.02);
}

.thumbnail-gallery {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    justify-content: center;
}

.thumbnail-gallery img {
    width: 70px;
    height: 70px;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    object-fit: cover;
    cursor: pointer;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.thumbnail-gallery img:hover {
    border-color: #007b5e;
    transform: scale(1.1);
}

.product-info {
    flex: 1;
    min-width: 300px;
}

.product-info h1 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: bold;
}

.product-price {
    font-size: 1.8rem;
    color: #007b5e;
    font-weight: bold;
    margin-bottom: 20px;
}

.product-description {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #555;
    line-height: 1.8;
    margin-top: 50px;
}

.product-specifications {
    margin-top: 30px;
}

.product-specifications h2 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: bold;
}

.product-specifications ul {
    list-style: none;
    padding: 0;
}

.product-specifications li {
    font-size: 1rem;
    color: #555;
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.product-specifications li::before {
    content: '\2022';
    color: #007b5e;
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: 0;
}

.buy-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.buy-section .btn-buy, .buy-section .btn-add-cart {
    background-color: #007b5e;
    color: #fff;
    padding: 15px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s ease;
}

.buy-section .btn-buy:hover, .buy-section .btn-add-cart:hover {
    background-color: #00563d;
}

.shipping-info {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #555;
}

.shipping-info a {
    color: #007b5e;
    text-decoration: none;
    transition: color 0.3s ease;
}

.shipping-info a:hover {
    color: #00563d;
}

/* Responsividade */
@media (max-width: 768px) {
    .product-details {
        flex-direction: column;
    }

    .thumbnail-gallery {
        justify-content: flex-start;
    }

    .product-info h1 {
        font-size: 1.5rem;
    }

    .product-price {
        font-size: 1.5rem;
    }

    .buy-section {
        flex-direction: column;
        gap: 10px;
    }

    .thumbnail-gallery img {
        width: 60px;
        height: 60px;
    }
}
/* Botões de ação */
.buy-section .btn-buy, .buy-section .btn-add-cart {
    background-color: #007b5e;
    color: #fff;
    padding: 15px 20px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.buy-section .btn-buy:hover, .buy-section .btn-add-cart:hover {
    background-color: #00563d;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
    transform: scale(1.02);
}

/* Personalização do seletor de quantidade */
.quantity-selector {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: #555;
}

.quantity-selector button {
    background-color: #007b5e;
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quantity-selector button:hover {
    background-color: #00563d;
}

.quantity-selector input {
    width: 50px;
    text-align: center;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}
/* Botões de ação com largura de 100% */
.buy-section .btn-buy, .buy-section .btn-add-cart {
    background-color: #007b5e;
    color: #fff;
    padding: 15px 20px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.buy-section .btn-buy:hover, .buy-section .btn-add-cart:hover {
    background-color: #00563d;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
    transform: scale(1.02);
}

/* Personalização do seletor de quantidade */
/* Seletor de quantidade estilo Mercado Livre */
.quantity-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 16px;
    font-family: Arial, sans-serif;
}

.quantity-selector button {
    background-color: #007b5e;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

.quantity-selector button:hover {
    background-color: #00563d;
    transform: scale(1.1);
}

.quantity-selector input {
    width: 60px;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 5px;
    background-color: #f9f9f9;
    outline: none;
}

.quantity-selector input:focus {
    border-color: #007b5e;
    box-shadow: 0 0 4px rgba(0, 123, 94, 0.4);
}

.quantity-selector button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}
/* Footer Styling */
.site-footer {
    background-color: #0e3c40;
    color: #ffffff;
    padding: 40px 20px;
}

.site-footer .container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Newsletter Section */
.footer-newsletter {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.footer-newsletter .newsletter-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.newsletter-icon {
    font-size: 2rem;
    color: #34d399;
}

.newsletter-text h4 {
    font-size: 1.2rem;
    color: #ffffff;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    padding: 10px;
    font-size: 0.9rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.newsletter-form .btn-submit {
    background-color: #34d399;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.newsletter-form .btn-submit:hover {
    background-color: #2b947a;
}

.newsletter-terms {
    font-size: 0.8rem;
    color: #ccc;
}

.newsletter-terms a {
    color: #34d399;
    text-decoration: none;
}

/* Links Section */
.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
}

.footer-column h4 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #34d399;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.footer-column ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #34d399;
}

/* Social Media Section */
.footer-social {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.footer-social a {
    font-size: 1.5rem;
    color: #ffffff;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: #34d399;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    font-size: 0.8rem;
    color: #ccc;
    border-top: 1px solid #3a5a5e;
    padding-top: 20px;
}
/* Estilo para a Newsletter Icon */
.newsletter-icon img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}
/* Footer Styling */
.site-footer {
    background-color: #333;
    color: #fff;
    padding: 30px 0;
    margin-top: 30px;
}

.footer-newsletter {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    border-bottom: 1px solid #444;
    padding-bottom: 20px;
}

.newsletter-icon img {
    width: 60px;
    height: 60px;
    margin-right: 15px;
}

.newsletter-text h4 {
    font-size: 1.2rem;
    color: #fff;
    margin: 0;
}

.newsletter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.newsletter-form input {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 1rem;
}

.newsletter-form .btn-submit {
    background-color: #007b5e;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-form .btn-submit:hover {
    background-color: #00563d;
}

.footer-links {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.footer-column {
    flex: 1;
    margin: 0 10px;
}

.footer-column h4 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 10px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 5px;
}

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-column ul li a:hover {
    color: #fff;
}

.footer-image {
    max-width: 150px;
    height: auto;
    margin-top: 10px;
    border-radius: 5px;
    background: #fff;
    padding: 5px;
}

.footer-social {
    text-align: center;
    margin-top: 20px;
}

.footer-social a {
    color: #fff;
    margin: 0 10px;
    font-size: 1.5rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #007b5e;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 0.8rem;
    color: #ccc;
}
