@import url('https://fonts.googleapis.com/css2?family=Grandstander:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Galada&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

/* ================================================
   LOADING SCREEN
   Adicione este CSS no TOPO do seu style.css
   ================================================ */

/* Container do Loading - Tela cheia */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #eed6c4;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

/* Classe para esconder o loading */
#loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Logo ou Texto (opcional) */
.loading-logo {
    font-family: "Galada", cursive;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--color-chocolate-dark, #4A2C2A);
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
    text-align: center;
    animation: fadeInDown 0.6s ease;
}

/* Container do Typing Indicator */
.typing-indicator {
    position: relative;
    width: 80px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

/* Círculos (bolinhas) */
.typing-circle {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--color-chocolate-dark, #4A2C2A);
    animation: typing-bounce 1.4s infinite ease-in-out;
}

/* Delay para cada bolinha */
.typing-circle:nth-child(1) {
    animation-delay: 0s;
}

.typing-circle:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-circle:nth-child(3) {
    animation-delay: 0.4s;
}

/* Sombras das bolinhas */
.typing-shadow {
    position: absolute;
    bottom: -8px;
    width: 12px;
    height: 4px;
    border-radius: 50%;
    background-color: rgba(74, 44, 42, 0.2);
    filter: blur(1px);
    animation: typing-shadow 1.4s infinite ease-in-out;
}

.typing-shadow:nth-child(1) {
    left: 0;
    animation-delay: 0s;
}

.typing-shadow:nth-child(2) {
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0.2s;
}

.typing-shadow:nth-child(3) {
    right: 0;
    animation-delay: 0.4s;
}

/* Texto de carregamento (opcional) */
.loading-text {
    margin-top: 2rem;
    font-family: var(--font-body, 'Space Grotesk', sans-serif);
    font-size: 0.9rem;
    color: var(--color-chocolate-medium, #6D4C41);
    letter-spacing: 0.05em;
    animation: pulse 2s infinite;
}

@keyframes typing-bounce {
    0%, 60%, 100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
    30% {
        transform: translateY(-20px) scale(1.1);
        opacity: 0.8;
    }
}

/* Animação das sombras */
@keyframes typing-shadow {
    0%, 60%, 100% {
        transform: scale(1);
        opacity: 0.2;
    }
    30% {
        transform: scale(0.5);
        opacity: 0.1;
    }
}

/* Fade in do logo */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Pulse do texto */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@media (max-width: 768px) {
    .loading-logo {
        font-size: 1.5rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }

    .typing-indicator {
        width: 60px;
        height: 16px;
        gap: 8px;
    }

    .typing-circle {
        width: 10px;
        height: 10px;
    }

    .typing-shadow {
        width: 10px;
        height: 3px;
    }

    .loading-text {
        font-size: 0.8rem;
        margin-top: 1.5rem;
    }
}

@media (max-width: 480px) {
    .loading-logo {
        font-size: 1.2rem;
    }

    .typing-indicator {
        width: 50px;
        gap: 6px;
    }

    .typing-circle {
        width: 8px;
        height: 8px;
    }

    .typing-shadow {
        width: 8px;
        height: 2px;
    }
}

/* ================================================
   PREVENIR SCROLL DURANTE LOADING
   ================================================ */

body.loading {
    overflow: hidden;
    height: 100vh;
}

@keyframes typing-circle7124 {
  0% {
    top: 20px;
    height: 5px;
    border-radius: 50px 50px 25px 25px;
    transform: scaleX(1.7);
  }

  40% {
    height: 8px;
    border-radius: 50%;
    transform: scaleX(1);
  }

  100% {
    top: 0%;
  }
}

.typing-circle:nth-child(2) {
  left: 45%;
  animation-delay: 0.2s;
}

.typing-circle:nth-child(3) {
  left: auto;
  right: 15%;
  animation-delay: 0.3s;
}

.typing-shadow {
  width: 5px;
  height: 4px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 30px;
  transform-origin: 50%;
  z-index: 3;
  left: 15%;
  filter: blur(1px);
  animation: typing-shadow046 0.5s alternate infinite ease;
}

@keyframes typing-shadow046 {
  0% {
    transform: scaleX(1.5);
  }

  40% {
    transform: scaleX(1);
    opacity: 0.7;
  }

  100% {
    transform: scaleX(0.2);
    opacity: 0.4;
  }
}

.typing-shadow:nth-child(4) {
  left: 45%;
  animation-delay: 0.2s;
}

.typing-shadow:nth-child(5) {
  left: auto;
  right: 15%;
  animation-delay: 0.3s;
}

html {
    scroll-behavior: smooth;
}

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

body {    
    font-family: "Grandstander", cursive;    
    background: #eed6c4;
    min-height: 100vh;
}

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

/* Header */
header {
    background: #eed6c4;
    color:#4A2C2A;
    padding: 20px 0;
    box-shadow: 0 4px 6px rgba(77, 47, 47, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    font-family: "Grandstander", cursive;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: #4A2C2A;
    transition: opacity 0.3s;
}

.logo:hover {
    opacity: 0.7;
    cursor: pointer;
    transition: all .5s ease;
}


.logo-text h1 {
    margin-bottom: 5px;
    font-family: "Galada", cursive;
    font-size: 2.5rem;
}

.logo-text p {
    font-size: 14px;
    opacity: 0.9;
}

.cart-icon {
    background: rgba(255, 255, 255, 0.2);
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    font-size: 18px;
}

.cart-icon:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff4757;
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.main-section {
    position: relative;
    overflow: hidden;
    padding: 80px 100px 10px 100px;
}

.main-section-inner {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}

.main-section-center {
    text-align: center;
    max-width: 480px;
    z-index: 2;
}

.main-title {
    color: #4A2C2A;
    font-family: "Outfit", sans-serif;
    font-weight: 800;
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 16px;
}

.main-subtitle {
    color: #7a5c58;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 32px;
}

.main-cta {
    display: inline-block;
    background: #4A2C2A;
    color: #fff;
    padding: 14px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: "Grandstander", cursive;
    transition: all 0.3s ease;
    border: 2px solid #4A2C2A;
}

.main-cta:hover {
    background: transparent;
    color: #4A2C2A;
    transform: scale(1.05);
}

.main-img-left img,
.main-img-right img {
    width: 280px;
    height: 280px;
    border-radius: 16px;
    object-fit: cover;
    filter: drop-shadow(0 10px 30px rgba(74, 44, 42, 0.2));
}

.main-img-left img {
    animation: floatLeft 4s ease-in-out infinite;
}

.main-img-right img {
    animation: floatRight 4s ease-in-out 1s infinite;
}

.main-img-heart {
    position: absolute;
    top: 30px;
    right: calc(50% - 380px);
    z-index: 3;
    animation: floatHeart 5s ease-in-out 0.5s infinite;
}

.main-img-heart img {
    width: 70px;
    height: 70px;
    filter: drop-shadow(0 4px 12px rgba(74, 44, 42, 0.25));
}

.main-section + .main-wave {
    margin-bottom: -1px; 
}

.main-wave {
    position: relative; 
    width: 100%;
    line-height: 0;
    z-index: 5;
}
.section2 + .main-wave {
    margin-top: -1px; 
}

.main-wave svg {
    width: 100%;
    height: auto;
    display: block;
}

.wave-bottom {
    transform: rotate(180deg);
    display: block;
}

@keyframes floatLeft {
    0%, 100% { transform: translateY(0) rotate(-3deg); }
    50% { transform: translateY(-15px) rotate(0deg); }
}

@keyframes floatRight {
    0%, 100% { transform: translateY(0) rotate(3deg); }
    50% { transform: translateY(-12px) rotate(0deg); }
}

@keyframes floatHeart {
    0%, 100% { transform: translateY(0) rotate(10deg); }
    50% { transform: translateY(-10px) rotate(-5deg); }
}


.section2 {
    background: #4A2C2A;
    position: relative;
    overflow: hidden;
    padding: 100px 100px 50px 100px;

}

.section2-inner {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}

.main-title2 {
    color: #e29d59;
    font-family: "Outfit", sans-serif;
    font-weight: 800;
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 16px;
}

.main-subtitle2 {
    color: #fff4de;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 32px;
}

.main-cta2 {
    display: inline-block;
    background: #eed6c4;
    color: #4A2C2A;
    padding: 14px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: "Grandstander", cursive;
    transition: all 0.3s ease;
    border: 2px solid #4A2C2A;
}

.main-cta2:hover {
    background: #4A2C2A;
    color: #fffdf9;
    border: 1px solid #fff;
    transform: scale(1.07);
}

.main-cta3 {
    display: inline-block;
    background: #fffdf9;
    color: #4A2C2A;
    padding: 14px 40px;
    border-radius: 30px;
    border: 1px solid transparent;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: "Grandstander", cursive;
    transition: all 0.3s ease;
}

.main-cta3:hover {
    background: #4A2C2A;
    color: #fffdf9;
    border: 1px solid #fff;
    transform: scale(1.07);
}

.filters {
    background: #eed6c4;
    padding: 50px 0;
    margin: 0;
}

.filters .container {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    font-family: "Grandstander", cursive;    
    padding: 14px 40px;
    border: 1px solid #432b2a;
    background: #eed6c4;
    color: #4A2C2A;
    border-radius: 30px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.3s;
    font-weight: 500;
}

.filter-btn:hover {
    background-color: #5a3c3c;
    color: #eed6c4;
    border: 1px solid #fff;
}

.filter-btn.active {
    background: #5a3c3c;
    color: #eed6c4;
    border: 1px solid #fff;
}

/* Produtos */
.products {
    padding: 20px 0 60px;
    background-color: #eed6c4;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    border-radius: 18px;
    background-color: #eed6c4;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}


.product-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background: linear-gradient(135deg, #fff6e8 0%, #eed6c4 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.product-info {
    padding: 20px;
}

.product-category {
    font-size: 12px;
    color: #4A2C2A;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.product-name {
    font-size: 20px;
    font-weight: 600;
    color: #4A2C2A;
    margin-bottom: 8px;
}

.product-description {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-size: 24px;
    font-weight: bold;
    color: #4A2C2A;
}

.add-to-cart-btn {
    background: #4A2C2A;
    color: white;
    border: 1px solid transparent;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
}

.add-to-cart-btn:hover {
    background: #fff;
    color: #4A2C2A;
    border: 1px solid #4A2C2A;
}

/* Carrinho Lateral */
.cart-sidebar {
    position: fixed;
    right: -400px;
    top: 0;
    width: 400px;
    height: 100vh;
    background: white;
    box-shadow: -4px 0 12px rgba(0, 0, 0, 0.2);
    transition: right 0.3s;
    z-index: 1000;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    padding: 20px;
    background: #4A2C2A;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-cart {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.empty-cart {
    text-align: center;
    color: #999;
    padding: 40px 20px;
}

.cart-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    border-bottom: 1px solid #eee;
    align-items: center;
}

.cart-item-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

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

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-weight: 600;
    margin-bottom: 5px;
}

.cart-item-price {
    color: #4A2C2A;
    font-weight: 600;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
}

.quantity-btn {
    background: #f0f0f0;
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: background 0.3s;
}

.quantity-btn:hover {
    background: #e0e0e0;
}

.cart-item-remove {
    background: #ff4757;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 12px;
}

.cart-footer {
    padding: 20px;
    border-top: 2px solid #eee;
    background: #eed6c4;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}

.checkout-btn {
    font-family: "Grandstander", cursive;    
    width: 100%;
    background: #27ae60;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.checkout-btn:hover {
    background: #229954;
}

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
}

.overlay.active {
    display: block;
}

/* Modal de Checkout */
.checkout-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
    padding: 20px;
}

.checkout-modal.active {
    display: flex;
}

.checkout-content {
    background: white;
    border-radius: 15px;
    width: 100%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.checkout-header {
    background: #4A2C2A;
    color: white;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 15px 15px 0 0;
    position: sticky;
    top: 0;
    z-index: 10;
}

.checkout-header h2 {
    font-size: 24px;
}

.close-checkout {
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkout-body {
    padding: 30px;
}

/* Resumo do Pedido */
.checkout-summary {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.checkout-summary h3 {
    margin-bottom: 15px;
    color: #333;
}

.checkout-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
}

.checkout-item:last-child {
    border-bottom: none;
}

.checkout-total {
    display: flex;
    justify-content: space-between;
    font-size: 20px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 2px solid #4A2C2A;
    color: #4A2C2A;
}

/* Formulário */
.checkout-form h3 {
    margin-bottom: 20px;
    color: #333;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4A2C2A;
}

.form-group textarea {
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-small {
    grid-column: span 1;
    max-width: 150px;
}

.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.btn-primary,
.btn-secondary {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary {
    background: #27ae60;
    color: white;
}

.btn-primary:hover {
    background: #229954;
}

.btn-secondary {
    background: #e0e0e0;
    color: #333;
}

.btn-secondary:hover {
    background: #d0d0d0;
}


/* Responsivo */

@media (max-width: 1100px) {

    .main-img-left img,
    .main-img-right img {
        display: none;
    }
    
}

@media (max-width: 768px) {
    .logo-image {
        width: 45px;
        height: 45px;
    }
    
    .logo-text h1 {
        font-size: 18px;
    }
    
    .logo-text p {
        font-size: 8px;
    }
    
    .cart-icon {
        padding: 10px 16px;
        font-size: 15px;
    }
    
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }

    .checkout-content {
        max-width: 100%;
        margin: 0;
        border-radius: 0;
    }

    .checkout-header {
        border-radius: 0;
    }

    .checkout-body {
        padding: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-small {
        max-width: 100%;
    }

    .form-actions {
        flex-direction: column;
    }
    .main-section { padding: 100px 0 80px; }
    .main-section-inner {
        flex-direction: column;
        gap: 24px;
    }
    .main-title { font-size: 2.5rem; }
    .main-img-left img,
    .main-img-right img {
        display: none;
    }
    .section2{
        margin: 0;
        padding-left: 0;
    }
}


/* ================================================
   FOOTER - PEDAÇO DO CÉU
   Adicione este CSS no final do seu style.css
   ================================================ */

/* Container Principal do Footer */
.site-footer {
    background: var(--color-chocolate-dark, #4A2C2A);
    color: var(--color-bg-light, #FBF7F4);
    padding: 4rem 0 0 0;
    margin-top: 5rem;
    position: relative;
}

/* Onda Decorativa no Topo */
.site-footer::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 50px;
    background: var(--color-chocolate-dark, #4A2C2A);
    clip-path: polygon(0 50%, 100% 0, 100% 100%, 0 100%);
}

/* Container Grid */
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-container:first-child {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    padding-bottom: 3rem;
}

/* Colunas do Footer */
.footer-column {
    display: flex;
    flex-direction: column;
}

/* ================================================
   COLUNA SOBRE
   ================================================ */
.footer-about {
    grid-column: span 1;
}

.footer-title {
    font-family: var(--font-display, 'Sora', sans-serif);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-accent-gold, #C9A276);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.footer-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(251, 247, 244, 0.8);
    margin-bottom: 1rem;
}

.footer-logo-accent {
    font-size: 2rem;
    margin-top: 0.5rem;
    animation: sparkle 3s infinite;
}

@keyframes sparkle {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

/* ================================================
   COLUNAS GERAIS - TÍTULOS
   ================================================ */
.footer-heading {
    font-family: var(--font-display, 'Sora', sans-serif);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-accent-gold, #C9A276);
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
}

/* ================================================
   COLUNA LINKS RÁPIDOS
   ================================================ */
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-menu a {
    color: rgba(251, 247, 244, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    position: relative;
}

.footer-menu a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent-gold, #C9A276);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-menu a:hover {
    color: var(--color-accent-gold, #C9A276);
    transform: translateX(5px);
}

.footer-menu a:hover::before {
    width: 100%;
}

/* ================================================
   COLUNA CONTATO
   ================================================ */
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-list li {
    margin-bottom: 1rem;
}

.contact-link,
.contact-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(251, 247, 244, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-link:hover {
    color: var(--color-accent-gold, #C9A276);
    transform: translateX(5px);
}

.contact-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* WhatsApp Link Especial */
.whatsapp-link {
    background: rgba(37, 211, 102, 0.1);
    padding: 0.75rem 1rem;
    border-radius: 100px;
    border: 2px solid rgba(37, 211, 102, 0.3);
}

.whatsapp-link:hover {
    background: rgba(37, 211, 102, 0.2);
    border-color: #25D366;
    color: #25D366;
    transform: translateX(0) scale(1.05);
}

.whatsapp-link .contact-icon {
    width: 22px;
    height: 22px;
}

/* ================================================
   COLUNA REDES SOCIAIS
   ================================================ */
.footer-social-text {
    font-size: 0.9rem;
    color: rgba(251, 247, 244, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(251, 247, 244, 0.05);
    border-radius: 100px;
    text-decoration: none;
    color: rgba(251, 247, 244, 0.8);
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.social-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* Instagram */
.instagram-link:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(225, 48, 108, 0.3);
}

/* ================================================
   FOOTER BOTTOM (COPYRIGHT)
   ================================================ */
.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 0;
    border-top: 1px solid rgba(251, 247, 244, 0.1);
    margin-top: 3rem;
}

.footer-bottom .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright,
.footer-made-with {
    font-size: 0.85rem;
    color: rgba(251, 247, 244, 0.6);
    margin: 0;
}

.footer-made-with {
    font-style: italic;
}

/* ================================================
   RESPONSIVO - TABLET (≤ 1024px)
   ================================================ */
@media (max-width: 1024px) {
    .footer-container:first-child {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

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

/* ================================================
   RESPONSIVO - MOBILE (≤ 768px)
   ================================================ */
@media (max-width: 768px) {
    .site-footer {
        padding: 3rem 0 0 0;
        margin-top: 3rem;
    }

    .site-footer::before {
        top: -30px;
        height: 30px;
    }

    .footer-container {
        padding: 0 1.5rem;
    }

    .footer-container:first-child {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding-bottom: 2rem;
    }

    .footer-about {
        grid-column: span 1;
        text-align: center;
    }

    .footer-title {
        font-size: 1.75rem;
    }

    .footer-description {
        font-size: 0.95rem;
    }

    .footer-logo-accent {
        font-size: 2.5rem;
    }

    /* Centraliza títulos e conteúdo */
    .footer-links,
    .footer-contact,
    .footer-social {
        text-align: center;
    }

    .footer-menu,
    .footer-contact-list,
    .social-links {
        align-items: center;
    }

    .contact-link,
    .contact-info {
        justify-content: center;
    }

    .footer-bottom .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .whatsapp-link {
        width: fit-content;
        margin: 0 auto;
    }
}

/* ================================================
   RESPONSIVO - MOBILE PEQUENO (≤ 480px)
   ================================================ */
@media (max-width: 480px) {
    .site-footer {
        padding: 2rem 0 0 0;
    }

    .footer-container {
        padding: 0 1rem;
    }

    .footer-container:first-child {
        gap: 2rem;
    }

    .footer-title {
        font-size: 1.5rem;
    }

    .footer-heading {
        font-size: 1rem;
    }

    .footer-menu a,
    .contact-link,
    .contact-info,
    .social-link {
        font-size: 0.9rem;
    }

    .whatsapp-link {
        padding: 0.625rem 0.875rem;
    }

    .social-link {
        padding: 0.625rem 0.875rem;
    }

    .footer-copyright,
    .footer-made-with {
        font-size: 0.8rem;
    }
}

/* ================================================
   DARK MODE COMPATIBILITY (OPCIONAL)
   ================================================ */
@media (prefers-color-scheme: dark) {
    .site-footer {
        /* Já está escuro, mas pode ajustar se necessário */
    }
}

/* ================================================
   ANIMAÇÕES EXTRAS
   ================================================ */
.footer-column {
    animation: fadeInUp 0.6s ease;
}

.footer-column:nth-child(1) { animation-delay: 0.1s; }
.footer-column:nth-child(2) { animation-delay: 0.2s; }
.footer-column:nth-child(3) { animation-delay: 0.3s; }
.footer-column:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Efeito de brilho no hover dos links */
.footer-menu a:hover,
.contact-link:hover,
.social-link:hover {
    text-shadow: 0 0 10px rgba(201, 162, 118, 0.5);
}