/* Reset e Variáveis */
:root {
    --rosa-antigo: #f3d6dc;
    --verde-oliva: #6b7b4f;
    --branco: #ffffff;
    --dourado-suave: #d4af37;
    --texto-escuro: #333333;
    --texto-medio: #555555;
    --sombra-leve: rgba(0, 0, 0, 0.1);
    --sombra-media: rgba(0, 0, 0, 0.15);
    --whatsapp-green: #25d366;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--texto-escuro);
    line-height: 1.8;
    background-color: var(--branco);
    overflow-x: hidden;
    max-width: 100%;
    width: 100%;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    color: var(--verde-oliva);
    line-height: 1.4;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

main {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

section {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

/* Header */
.header {
    background: var(--branco);
    padding: 0.8rem 0;
    box-shadow: 0 2px 10px var(--sombra-leve);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    box-sizing: border-box;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    position: relative;
}

.logo-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-shrink: 0;
    min-width: 0;
}

.logo-section .logo-image {
    max-width: 180px;
}

.logo {
    font-size: 2rem;
    color: var(--verde-oliva);
    margin-bottom: 0;
    font-weight: 700;
    line-height: 1.2;
}

.tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--texto-medio);
    font-style: italic;
    margin-top: 0.2rem;
    margin-bottom: 0;
}

.tagline-official {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.95rem;
    color: var(--verde-oliva);
    font-weight: 600;
    margin-top: 1rem;
    font-style: italic;
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid var(--rosa-antigo);
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
    position: relative;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    color: var(--texto-medio);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    display: block;
}

.nav-menu a:hover {
    color: var(--verde-oliva);
    background-color: var(--rosa-antigo);
}

.nav-menu a:active {
    color: var(--verde-oliva);
}

/* Menu Toggle (Hamburger) */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    width: 30px;
    height: 30px;
    justify-content: center;
    align-items: center;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--verde-oliva);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    background-color: var(--rosa-antigo);
    padding: 4rem 0;
}

.logo-image {
    max-width: 200px;
    width: 100%;
    height: auto;
    display: block;
}

.logo-image-main {
    max-width: 300px;
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 2rem auto;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--verde-oliva);
}

.hero-text {
    font-size: 1.1rem;
    color: var(--texto-medio);
    margin-bottom: 1.5rem;
    text-align: center;
}

.hero-highlight {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--verde-oliva);
    font-style: italic;
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: var(--branco);
    border-left: 4px solid var(--dourado-suave);
    border-radius: 8px;
    text-align: center;
}

/* Section Titles */
.section-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--verde-oliva);
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--dourado-suave), var(--rosa-antigo));
    margin: 1rem auto 0;
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--texto-medio);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* About Section */
.about {
    background-color: var(--branco);
    padding: 4rem 0;
}

.about-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.about-image {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.about-image img,
.about-image .logo-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px var(--sombra-media);
    object-fit: cover;
    display: block;
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, var(--rosa-antigo) 0%, rgba(243, 214, 220, 0.5) 100%);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--verde-oliva);
}

.placeholder-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.6;
}

.placeholder-text {
    color: var(--texto-medio);
    font-size: 1rem;
    font-style: italic;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-text p {
    font-size: 1.05rem;
    color: var(--texto-medio);
    text-align: justify;
    line-height: 1.8;
}

.about-signature {
    margin-top: 1rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--rosa-antigo);
    text-align: left !important;
}

.about-signature strong {
    font-size: 1.2rem;
    color: var(--verde-oliva);
    font-family: 'Cormorant Garamond', serif;
}

.about-signature em {
    color: var(--texto-medio);
    font-size: 1rem;
}

/* Values Section */
.values {
    background-color: var(--rosa-antigo);
    padding: 4rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-card {
    background-color: var(--branco);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px var(--sombra-media);
    border-color: var(--verde-oliva);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--verde-oliva);
}

.value-card p {
    color: var(--texto-medio);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Pillars Section */
.pillars {
    background-color: var(--rosa-antigo);
    padding: 4rem 0;
}

.pillars-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.pillar-item {
    background-color: var(--branco);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--verde-oliva);
}

.pillar-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--verde-oliva);
}

.pillar-item p {
    color: var(--texto-medio);
    font-size: 1rem;
    line-height: 1.6;
}

/* Products Section */
.products {
    background-color: var(--branco);
    padding: 4rem 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.product-card {
    background-color: var(--branco);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px var(--sombra-leve);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--sombra-media);
    border-color: var(--verde-oliva);
}

.product-card.selected {
    border-color: var(--verde-oliva);
    border-width: 3px;
    box-shadow: 0 8px 25px rgba(107, 123, 79, 0.3);
}

.product-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--rosa-antigo) 0%, rgba(243, 214, 220, 0.5) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-placeholder {
    font-size: 4rem;
    opacity: 0.7;
}

.product-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--verde-oliva);
}

.product-description {
    color: var(--texto-medio);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    flex-grow: 1;
    line-height: 1.6;
}

.product-price {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--verde-oliva);
    margin-bottom: 1rem;
}

.btn-select-product {
    background-color: var(--verde-oliva);
    color: var(--branco);
    border: none;
    padding: 0.9rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Open Sans', sans-serif;
}

.btn-select-product:hover {
    background-color: #5a6a42;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(107, 123, 79, 0.3);
}

.btn-select-product:active {
    transform: translateY(0);
}

/* Orders Section */
.orders {
    background-color: var(--branco);
    padding: 4rem 0;
}

.orders-content {
    max-width: 900px;
    margin: 0 auto;
}

.orders-info {
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.orders-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--verde-oliva);
}

.orders-content p {
    font-size: 1.05rem;
    color: var(--texto-medio);
    margin-bottom: 1.5rem;
    text-align: center;
    line-height: 1.8;
}

/* Gallery Section */
.gallery {
    background-color: var(--rosa-antigo);
    padding: 4rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    aspect-ratio: 1;
    box-shadow: 0 4px 15px var(--sombra-leve);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--sombra-media);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-icon {
    font-size: 3rem;
    color: var(--branco);
}

/* Modal Lightbox */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    box-sizing: border-box;
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    animation: zoomIn 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: var(--branco);
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10001;
    line-height: 1;
}

.modal-close:hover,
.modal-close:focus {
    color: var(--rosa-antigo);
}

.modal-caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--branco);
    font-size: 1.2rem;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 1rem 2rem;
    border-radius: 8px;
    max-width: 80%;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Purchase Section */
.purchase-section {
    background-color: var(--rosa-antigo);
    padding: 4rem 0;
}

.purchase-content {
    max-width: 900px;
    margin: 0 auto;
}

.purchase-flow {
    background-color: var(--branco);
    padding: 2.5rem;
    border-radius: 12px;
    margin-bottom: 3rem;
}

.flow-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.flow-step {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
}

.step-number {
    background-color: var(--verde-oliva);
    color: var(--branco);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    flex-shrink: 0;
    font-family: 'Open Sans', sans-serif;
}

.step-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--verde-oliva);
    font-family: 'Cormorant Garamond', serif;
    text-align: center;
}

.step-content p {
    color: var(--texto-medio);
    font-size: 0.95rem;
    text-align: center;
    margin-bottom: 0;
}

/* Shipping Calculator */
.shipping-calculator {
    background-color: var(--branco);
    border: 2px solid var(--verde-oliva);
    border-radius: 12px;
    padding: 2.5rem;
    margin-top: 2rem;
}

.shipping-calculator h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--verde-oliva);
    text-align: center;
}

.selected-product-info {
    margin-bottom: 2rem;
}

.selected-product {
    background-color: var(--rosa-antigo);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--verde-oliva);
    font-size: 1.1rem;
    color: var(--texto-medio);
    line-height: 1.8;
}

.cep-input-group {
    margin-bottom: 2rem;
}

.cep-input-group label {
    display: block;
    font-size: 1.1rem;
    color: var(--verde-oliva);
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.cep-wrapper {
    display: flex;
    gap: 1rem;
    align-items: stretch;
}

#cep-input {
    flex: 1;
    padding: 1rem;
    border: 2px solid var(--rosa-antigo);
    border-radius: 8px;
    font-size: 1.1rem;
    font-family: 'Open Sans', sans-serif;
    transition: border-color 0.3s ease;
}

#cep-input:focus {
    outline: none;
    border-color: var(--verde-oliva);
}

.btn-calculate {
    background-color: var(--verde-oliva);
    color: var(--branco);
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Open Sans', sans-serif;
    white-space: nowrap;
}

.btn-calculate:hover {
    background-color: #5a6a42;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(107, 123, 79, 0.3);
}

.shipping-result {
    margin-top: 2rem;
}

.freight-info {
    background-color: var(--rosa-antigo);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--verde-oliva);
}

.freight-info h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--verde-oliva);
    font-family: 'Cormorant Garamond', serif;
}

.freight-details p {
    font-size: 1.05rem;
    color: var(--texto-medio);
    margin-bottom: 0.8rem;
    line-height: 1.8;
}

.total-price {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--verde-oliva);
    font-size: 1.4rem !important;
    font-weight: 700 !important;
    color: var(--verde-oliva) !important;
}

.whatsapp-final {
    margin-top: 2rem;
    text-align: center;
}

.whatsapp-button.final-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background-color: var(--whatsapp-green);
    color: var(--branco);
    padding: 1.3rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.whatsapp-button.final-cta:hover {
    background-color: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, var(--verde-oliva) 0%, #5a6a42 100%);
    padding: 4rem 0;
    text-align: center;
    color: var(--branco);
}

.contact-content h2 {
    color: var(--branco);
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.contact-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
}

.cta-phrases {
    margin: 2rem 0;
}

.cta-phrases p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0.8rem;
    font-style: italic;
}

.whatsapp-button.main-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    background-color: var(--whatsapp-green);
    color: var(--branco);
    padding: 1.4rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    margin: 1.5rem 0 0 0;
}

.whatsapp-button.main-cta:hover {
    background-color: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-icon {
    font-size: 1.5rem;
}

.cta-note {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 1rem;
}

/* Footer */
.footer {
    background-color: var(--texto-escuro);
    color: var(--branco);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

/* Coluna 1: Brand */
.footer-brand {
    min-width: 400px;
    width: 100%;
}

.footer-logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--branco);
    margin-bottom: 0.3rem;
    font-weight: 700;
    text-align: left;
}

.footer-tagline-small {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--rosa-antigo);
    font-style: italic;
    margin-bottom: 1rem;
}

.footer-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    color: var(--rosa-antigo);
    font-style: italic;
    margin-top: 0.5rem;
}

/* Coluna 2: Links */
.footer-links {
    max-width: 260px;
    width: 100%;
    margin-left: 50px;
}

.footer-credit a {
    color: var(--rosa-antigo);
    text-decoration: none;
    font-weight: 600;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--branco);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--verde-oliva);
    width: fit-content;
}

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

.footer-menu li {
    margin-bottom: 0.8rem;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: block;
}

.footer-menu a:hover {
    color: var(--rosa-antigo);
    padding-left: 0.5rem;
}

/* Coluna 3: Contato e Pagamento */
.footer-contact {
    max-width: 300px;
    margin-left: 80px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    font-size: 1.3rem;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-contact-item a:hover {
    color: var(--rosa-antigo);
}

.footer-payment-delivery {
    margin-top: 1.5rem;
}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-top: 1rem;
}

.payment-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.payment-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.payment-icon svg {
    width: 100%;
    height: 100%;
}

.pix-icon {
    background-color: rgba(50, 188, 173, 0.2);
    padding: 8px;
}

.correios-icon {
    background-color: rgba(255, 214, 0, 0.2);
    padding: 8px;
}

.payment-item span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Divisória do Footer */
.footer-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 2rem 0 1.5rem;
}

/* Rodapé Inferior */
.footer-bottom {
    text-align: center;
    padding-top: 1rem;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.3rem;
}

.footer-credit {
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 0.8rem !important;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-payment-delivery {
        margin-left: 0px;
    }

    .footer-links {
        margin-left: 0px;
    }

    .footer-logo h3 {
        text-align: center;
        margin: 0 auto;
    }

    .footer-logo img {
        text-align: center;
        margin: 0 auto;
        display: block;
        width: 50%!important;
        height: auto!important;
    }

    .header {
        padding: 0.8rem 0;
    }

    .header-content {
        justify-content: space-between;
        flex-wrap: nowrap;
        gap: 1rem;
    }

    .logo-section {
        align-items: flex-start;
        flex: 1;
        min-width: 0;
    }

    .logo-section .logo-image {
        text-align: center;
        margin: 0 auto;
    }

    /* Mostrar menu no mobile */
    .main-nav {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

    .logo {
        font-size: 1.5rem;
    }

    .tagline {
        font-size: 0.9rem;
    }

    .tagline-official {
        font-size: 0.85rem;
        margin-top: 0.8rem;
        padding-top: 0.8rem;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: calc(100% + 0.5rem);
        left: 0;
        right: 0;
        background-color: var(--branco);
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        box-shadow: 0 4px 10px var(--sombra-media);
        border-top: 1px solid var(--rosa-antigo);
        z-index: 999;
        max-height: calc(100vh - 100px);
        overflow-y: auto;
        width: 100%;
        box-sizing: border-box;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 1rem 1.5rem;
        border-radius: 0;
        border-bottom: 1px solid var(--rosa-antigo);
    }

    .nav-menu a:hover {
        background-color: var(--rosa-antigo);
    }

    .tagline-official {
        font-size: 1rem;
    }

    .hero h2,
    .section-title {
        font-size: 1.8rem;
    }

    .hero {
        padding: 3rem 0;
    }

    /* About Section Responsive */
    .about-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image {
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
    }

    .about-image img,
    .about-image .logo-image {
        width: 100%;
        max-width: 100%;
        height: auto;
    }

    /* Footer Responsive */
    .footer {
        padding: 2.5rem 0 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-brand,
    .footer-links,
    .footer-contact {
        max-width: 100%;
        margin-left: 0px;
    }

    .hero-text {
        font-size: 1rem;
        text-align: left;
    }

    .hero-highlight {
        font-size: 1.1rem;
        padding: 1.2rem;
    }

    .values-grid,
    .pillars-content,
    .products-grid,
    .flow-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .product-card {
        max-width: 100%;
    }

    .cep-wrapper {
        flex-direction: column;
    }

    .btn-calculate {
        width: 100%;
    }

    .whatsapp-button.main-cta,
    .whatsapp-button.final-cta {
        padding: 1.1rem 2rem;
        font-size: 1.1rem;
        width: 100%;
        justify-content: center;
    }

    .about,
    .values,
    .pillars,
    .products,
    .gallery,
    .orders,
    .purchase-section,
    .contact {
        padding: 3rem 0;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }

    .modal-content {
        max-width: 95%;
        max-height: 85vh;
    }

    .modal-close {
        top: 10px;
        right: 20px;
        font-size: 2.5rem;
    }

    .modal-caption {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
        bottom: 10px;
    }

    /* About Section Responsive */
    .about-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image {
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
    }

    .about-image img,
    .about-image .logo-image {
        width: 100%;
        max-width: 100%;
        height: auto;
    }

    .logo-image-main {
        max-width: 280px;
        width: 100%;
        margin: 1.5rem auto;
    }

    /* Footer Responsive */
    .footer {
        padding: 2.5rem 0 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-brand,
    .footer-links,
    .footer-contact {
        max-width: 100%;
        margin-left: 0px;
        width: 100%;
    }

    .purchase-flow,
    .shipping-calculator {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .footer-links {
        margin-left: 0px;
    }

    .footer-payment-delivery {
        margin-left: 0px;
    }

    .container {
        padding: 0 15px;
        width: 100%;
        box-sizing: border-box;
        max-width: 100%;
    }

    .header {
        padding: 0.8rem 0;
    }

    .logo {
        font-size: 1.4rem;
    }

    .tagline {
        font-size: 0.85rem;
    }

    .tagline-official {
        font-size: 0.8rem;
        margin-top: 0.6rem;
        padding-top: 0.6rem;
    }

    .nav-menu a {
        font-size: 0.95rem;
        padding: 0.9rem 1.2rem;
    }

    /* About Section Mobile */
    .about-content-wrapper {
        gap: 1.5rem;
    }

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

    .about-image img,
    .about-image .logo-image {
        width: 100%;
        max-width: 100%;
        height: auto;
    }

    .about-text p {
        font-size: 0.95rem;
    }

    .logo-image-main {
        max-width: 200px;
        width: 100%;
        margin: 1rem auto;
    }

    .logo-section .logo-image {
        text-align: center;
        margin: 0 auto;
    }

    /* Footer Mobile */
    .footer {
        padding: 2rem 0 1rem;
    }

    .footer-content {
        gap: 2rem;
    }

    .footer-logo-text {
        font-size: 1.5rem;
    }

    .payment-item span {
        font-size: 0.85rem;
    }

    .hero h2,
    .section-title {
        font-size: 1.5rem;
    }

    .hero-text {
        font-size: 0.95rem;
    }

    .hero-content {
        padding: 0;
        width: 100%;
    }

    .hero-highlight {
        font-size: 0.95rem;
        padding: 1rem;
        width: 100%;
        box-sizing: border-box;
    }

    .product-info,
    .value-card,
    .pillar-item {
        padding: 1.5rem;
    }

    .whatsapp-button.main-cta,
    .whatsapp-button.final-cta {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .flow-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .step-content {
        text-align: center;
    }

    .step-content p {
        text-align: center;
    }
}

/* Acessibilidade */
.whatsapp-button:focus,
.btn-select-product:focus,
.btn-calculate:focus {
    outline: 3px solid var(--dourado-suave);
    outline-offset: 2px;
}

#cep-input:focus {
    outline: 2px solid var(--dourado-suave);
    outline-offset: 2px;
}

/* Animações suaves */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.values-grid,
.pillars-content,
.products-grid,
.orders-content,
.contact-content {
    animation: fadeIn 0.8s ease-out;
}

/* Scroll suave */
html {
    scroll-behavior: smooth;
}
