:root {
    --primary-blue: #000FFF;
    --light-blue: #E6F0FF;
    --dark-blue: #001a66;
    --accent: #FF6B6B;
    --dark-gray: #1a1a2e;
    --light-gray: #f8f9fa;
    --gradient: linear-gradient(135deg, #000FFF, #5E8EFF);
    --text: #333;
    --gas-empty: #e0e0e0;
    --gas-full: #4CAF50;
    --payment-active: #e6f0ff;
    --payment-selected: var(--primary-blue);
    --payment-selected-text: white;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #fff;
}
h1, h2, h3, h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
/* Header */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}
.logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-blue);
    letter-spacing: -0.5px;
}
.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient);
    border-radius: 50%;
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 18px;
}
nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}
nav ul li a {
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s;
    position: relative;
}
nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-blue);
    transition: width 0.3s;
}
nav ul li a:hover {
    color: var(--primary-blue);
}
nav ul li a:hover:after {
    width: 100%;
}
.btn {
    display: inline-block;
    background: var(--gradient);
    color: white;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 15, 255, 0.2);
}
.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 15, 255, 0.3);
}
.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    box-shadow: none;
}
.btn-outline:hover {
    background: var(--primary-blue);
    color: white;
}
.btn-accent {
    background: var(--accent);
}
.btn-accent:hover {
    background: #ff5252;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
}
/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(0, 15, 255, 0.8), rgba(94, 142, 255, 0.8)), url('../img/fundo.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.hero-content {
    max-width: 800px;
    padding-top: 80px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.hero h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    color: white;
    margin-bottom: 25px;
    line-height: 1.1;
    font-weight: 800;
}
.hero .subtitle {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    font-weight: 300;
    max-width: 600px;
}
.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 24px;
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-20px);
    }
    60% {
        transform: translateX(-50%) translateY(-10px);
    }
}
/* Gas Tank Progress */
.gas-tank-container {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    width: 60px;
    height: 100px;
}
.gas-tank {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 10px;
    background: var(--gas-empty);
    border: 3px solid #ccc;
}
.gas-tank-fill {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: var(--gas-full);
    transition: height 0.3s ease;
    border-radius: 0 0 7px 7px;
}
.gas-tank-label {
    position: absolute;
    top: -30px;
    left: 0;
    width: 100%;
    text-align: center;
    font-weight: 600;
    color: var(--dark-blue);
    font-size: 14px;
}
.gas-tank-percentage {
    position: absolute;
    bottom: -30px;
    left: 0;
    width: 100%;
    text-align: center;
    font-weight: 600;
    color: var(--dark-blue);
    font-size: 14px;
}
/* Products Section */
.products {
    padding: 120px 0;
    background: var(--light-gray);
}
.section-header {
    text-align: center;
    margin-bottom: 80px;
    opacity: 0;
    transform: translateY(30px);
}
.section-header.animate {
    animation: fadeInUp 0.8s ease forwards;
}
.section-header h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--dark-blue);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}
.section-header h2:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background: var(--accent);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}
.section-header p {
    max-width: 700px;
    margin: 0 auto;
    color: #666;
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
}
.product-card.animate {
    animation: fadeInUp 0.8s ease forwards;
}
.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}
.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 1;
}
.product-img {
    height: 200px;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--primary-blue);
}
.product-content {
    padding: 25px;
}
.product-content h3 {
    color: var(--dark-blue);
    margin-bottom: 10px;
    font-size: 1.4rem;
}
.product-content p {
    color: #666;
    margin-bottom: 20px;
    font-size: 0.95rem;
}
.product-price {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.price-current {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-blue);
}
.price-old {
    font-size: 1.2rem;
    color: #999;
    text-decoration: line-through;
    margin-left: 10px;
}
.product-actions {
    display: flex;
    gap: 10px;
}
.btn-buy {
    flex: 1;
    background: var(--gradient);
    color: white;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}
.btn-buy:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 15, 255, 0.3);
}
.btn-info {
    width: 45px;
    height: 45px;
    background: var(--light-gray);
    color: var(--dark-blue);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
}
.btn-info:hover {
    background: var(--primary-blue);
    color: white;
}
/* Promotions Section */
.promotions {
    padding: 120px 0;
    background: white;
}
.promo-banner {
    background: var(--gradient);
    border-radius: 16px;
    padding: 50px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}
.promo-banner.animate {
    animation: fadeInUp 0.8s ease forwards;
}
.promo-banner:before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}
.promo-banner:after {
    content: '';
    position: absolute;
    bottom: -70px;
    left: -70px;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}
.promo-content {
    position: relative;
    z-index: 1;
}
.promo-content h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 20px;
}
.promo-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
}
.wednesday-promo {
    background: rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 10px;
    margin: 20px auto 30px;
    max-width: 600px;
}
.wednesday-promo h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}
.wednesday-promo p {
    margin-bottom: 0;
}
.promo-timer {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}
.timer-item {
    background: rgba(255, 255, 255, 0.2);
    padding: 15px;
    border-radius: 10px;
    min-width: 110px;
}
.timer-item span {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
}
.timer-item small {
    font-size: 0.8rem;
    opacity: 0.8;
}
/* Test Controls */
.test-controls {
    background: rgba(255, 255, 255, 0.2);
    padding: 15px;
    border-radius: 10px;
    margin: 20px auto 30px;
    max-width: 600px;
    display: none;
}
.test-controls.show {
    display: block;
}
.test-controls h4 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}
.test-controls label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}
.test-controls input, .test-controls select {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif;
}
.test-controls button {
    background: white;
    color: var(--primary-blue);
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}
.test-controls button:hover {
    background: var(--light-blue);
}
/* App Download Section */
.app-download {
    padding: 80px 0;
    background: var(--light-gray);
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
}
.app-download.animate {
    animation: fadeInUp 0.8s ease forwards;
}
.app-download h2 {
    font-size: clamp(2rem, 5vw, 2.5rem);
    color: var(--dark-blue);
    margin-bottom: 20px;
}
.app-download p {
    max-width: 600px;
    margin: 0 auto 40px;
    color: #666;
}
.app-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.app-button {
    display: inline-flex;
    align-items: center;    
     background: linear-gradient(135deg, #000FFF, #5E8EFF);
    color: white;
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
    transition: transform 0.3s;
    width: 200px;    
    height: 80px;
}
.app-button:hover {
    transform: translateY(-5px);
}
.app-button i {
    font-size: 2rem;
    margin-right: 10px;
}
.app-button-text {
    text-align: left;
    margin-left: 20px;
}
.app-button-text small {
    display: block;
    font-size: 0.7rem;
    opacity: 0.8;
    
}
.app-button-text span {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
}
/* Purpose Section */
.purpose {
    padding: 120px 0;
    background: var(--light-gray);
}
.purpose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.purpose-card {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}
.purpose-card.animate {
    animation: fadeInUp 0.8s ease forwards;
}
.purpose-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient);
}
.purpose-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}
.purpose-card .icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
}
.purpose-card h3 {
    color: var(--dark-blue);
    margin-bottom: 15px;
    font-size: 1.4rem;
}
.purpose-card p {
    color: #666;
    font-size: 0.95rem;
}
/* CTA Section */
.cta {
    padding: 100px 0;
    background: var(--gradient);
    color: white;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
}
.cta.animate {
    animation: fadeInUp 0.8s ease forwards;
}
.cta h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 20px;
}
.cta p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.9;
}
.btn-light {
    background: white;
    color: var(--primary-blue);
    gap: 15px;
}
.btn-promo{
    display:flex; 
    justify-content: center;
    gap:18px; 
    /* background-color: #000FFF;  */
 }
    
.btn-light:hover {
    background: rgba(255, 255, 255, 0.9);
}
/* Voice Section */
/* ================================================================== */
/* --- CORREÇÃO RESPONSIVA PARA O CARROSSEL DE DEPOIMENTOS --- */
/* ================================================================== */

/* Garante que a seção ocupe a largura total sem transbordar. */
.voice {
    width: 100%;
    box-sizing: border-box; /* Garante que padding não adicione largura extra */
}

/* A correção mais importante:
  - overflow: hidden -> Impede que os slides "vazem" para fora da área do carrossel.
  - width: 100% -> Força o carrossel a ocupar a largura disponível do seu container pai.
*/
.swiper-container.voice-swiper {
    width: 100%;
    overflow: hidden;
    padding-bottom: 50px; /* Mantém o espaço para a paginação */
}

/* Garante que os slides individuais não tentem ser maiores que o contêiner */
.swiper-slide {
    width: 100%;
}

/* Assegura que os cards se comportem bem e tenham a mesma altura,
  o que é importante para a consistência visual do carrossel.
*/
.voice-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%; /* Faz com que todos os cards preencham a altura do slide */
    padding: 20px;
    box-sizing: border-box; /* Garante que o padding não afete o tamanho total */
}

/* Ajusta a imagem para não quebrar o layout */
.voice-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    flex-shrink: 0; /* Impede que a imagem encolha */
}

/* Garante que o texto do depoimento ocupe o espaço restante */
.voice-card p {
    flex-grow: 1; /* Permite que o parágrafo cresça para preencher o espaço vertical */
}
.voice {
    padding: 120px 0;
    background: var(--light-gray);
}
.voice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.voice-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
}
.voice-card.animate {
    animation: fadeInUp 0.8s ease forwards;
}
.voice-card:hover {
    transform: translateY(-5px);
}
.voice-card h3 {
    color: var(--dark-blue);
    margin-bottom: 20px;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
}
.voice-card h3 i {
    margin-right: 10px;
    color: var(--accent);
}
.voice-card p {
    font-style: italic;
    margin-bottom: 12px;
    color: #555;
    font-size: 0.95rem;
}
/* Contact Section */
.contact {
    padding: 120px 0;
    background: white;
}
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}
.contact-map {
    height: 500px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    opacity: 0;
    transform: translateY(30px);
}
.contact-map.animate {
    animation: fadeInUp 0.8s ease forwards;
}
.contact-info {
    opacity: 0;
    transform: translateY(30px);
}
.contact-info.animate {
    animation: fadeInUp 0.8s ease forwards;
}
.contact-info h3 {
    color: var(--dark-blue);
    margin-bottom: 25px;
    font-size: 1.8rem;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}
.contact-item .icon {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 50%;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}
.contact-item-content h4 {
    color: var(--dark-blue);
    margin-bottom: 5px;
    font-size: 1.1rem;
}
.contact-item-content p {
    color: #666;
    line-height: 1.5;
}
/* Footer */
footer {
    background: var(--dark-gray);
    color: white;
    padding: 80px 0 40px;
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}
.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}
.footer-column h3:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background: var(--accent);
    bottom: 0;
    left: 0;
}
.footer-column p {
    color: #aaa;
    margin-bottom: 20px;
    line-height: 1.8;
}
.footer-column ul {
    list-style: none;
}
.footer-column ul li {
    margin-bottom: 12px;
}
.footer-column ul li a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
}
.footer-column ul li a i {
    margin-right: 8px;
    font-size: 14px;
}
.footer-column ul li a:hover {
    color: white;
}
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}
.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
}
.social-links a:hover {
    background: var(--accent);
    transform: translateY(-3px);
}
.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: #aaa;
}
/* Popup Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease;
    overflow-y: auto;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 30px;
    border-radius: 16px;
    width: 90%;
    max-width: 600px;
    position: relative;
    animation: slideIn 0.3s ease;
}
@keyframes slideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
.close {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
    transition: color 0.3s;
}
.close:hover {
    color: var(--dark-blue);
}

/*    ALERTA   */
/* Estilos para o Pop-up de Alerta Personalizado */
.custom-alert-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Fundo escuro semi-transparente */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000; /* Garante que fique acima de outros elementos */
    visibility: hidden; /* Inicialmente invisível */
    opacity: 0; /* Começa transparente */
    transition: visibility 0s, opacity 0.3s ease-in-out; /* Transição suave */
}

.custom-alert-overlay.show {
    visibility: visible;
    opacity: 1;
}

.custom-alert-box {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    max-width: 400px;
    width: 90%;
    position: relative;
    transform: translateY(-20px); /* Começa um pouco acima para o efeito */
    transition: transform 0.3s ease-in-out;
}

.custom-alert-overlay.show .custom-alert-box {
    transform: translateY(0); /* Desliza para a posição final */
}

.custom-alert-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    color: #aaa;
    cursor: pointer;
    transition: color 0.2s;
}

.custom-alert-close:hover {
    color: #666;
}

.custom-alert-icon {
    font-size: 60px;
    color: #ffc107; /* Cor de aviso (amarelo) */
    margin-bottom: 15px;
    line-height: 1;
}

.custom-alert-title {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

.custom-alert-message {
    font-size: 16px;
    color: #555;
    margin-bottom: 25px;
}

.custom-alert-btn-ok {
    background: #007bff; /* Cor do botão primário */
    color: #fff;
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.2s;
}

.custom-alert-btn-ok:hover {
    background: #0056b3;
}
/*FIM DO ALERTA*/


/* --- INÍCIO DOS NOVOS ESTILOS PARA O MODAL DE COMPRA (VERSÃO 2.5 - VISUAL FINAL) --- */

/* Base do Modal */
.modal { background-color: rgba(0, 0, 0, 0.6); }
.modal-content { animation: slideIn 0.4s ease; }
@keyframes slideIn { from { transform: translateY(-30px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.modal-content-large { max-width: 1000px; }
.modal-content h2 { color: var(--dark-blue); text-align: left; font-size: 1.8rem; }
.modal-content p { color: #666; text-align: left; margin-bottom: 25px; }

/* Layout em Colunas */
.modal-compra-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 35px; }
.modal-col-left { display: flex; flex-direction: column; gap: 20px; }
.modal-col-right { border-left: 1px solid var(--border-color); padding-left: 30px; }
#carrinho-itens-lista {border-radius: 3px; padding: 0 5px; /*box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1)*/;}
.carrinho-total{border-radius: 5px;  padding: 8px ; border-left: solid 3px var(--primary-blue); padding-left: 25px /*box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1)*/;}

/* Estilo de Cupom para o Carrinho */
.cupom-carrinho {background: #f7f9fc;border: 1px solid #e0e6f0;box-shadow: 0 4px 15px rgba(0,0,0,0.05);border-radius: 8px;padding: 20px;}
.cupom-carrinho h3 { display: flex; align-items: center; gap: 8px; font-size: 1.3rem; color: var(--dark-blue); margin-bottom: 15px; padding-bottom: 10px; border-bottom: 2px dashed var(--border-color);}
.cupom-itens { max-height: 160px; overflow-y: auto; padding-right: 10px; }
.carrinho-item { display: grid; grid-template-columns: 1fr auto; align-items: center; padding: 12px 0; border-bottom: 1px solid #e9eef5; }
.carrinho-item:last-child { border-bottom: none; }

.item-info strong { font-weight: 600; font-size: 1rem;margin-left: 5px; }
.item-info span { color: #555; font-size: 0.9rem;margin-left: 15px;  }

/* ESTILO MELHORADO PARA BOTÕES +/- */
.item-controles { display: flex; align-items: center; gap: 12px; }
.btn-quantidade {
    width: 30px; height: 30px; border-radius: 50%; border: 1px solid #d0d8e4;
    background-color: #fff; color: var(--primary-blue); font-size: 1.5rem; line-height: 0;
    font-weight: bold; cursor: pointer; transition: all 0.2s;
}
.btn-quantidade:hover { background-color: var(--light-blue); border-color: var(--primary-blue); }
.item-controles .quantidade { font-weight: 600; font-size: 1.1rem; text-align: center; }

/* DESTAQUE NO TOTAL */
.cupom-total {
    margin-top: 15px; padding: 15px; border-top: 2px dashed #d0d8e4;
    background-color: #ffffff; border-radius: 6px; border: 1px solid #e0e6f0;
}
.total-linha { display: flex; justify-content: space-between; margin-bottom: 8px; font-size: 0.95rem; }
.total-linha span { color: #555; }
.total-linha.principal { font-size: 1.4rem; font-weight: bold; color: var(--dark-blue); margin-top: 5px; }

/* "Adicione também" */
.add-mais-container { background-color: #fff; padding: 15px; border-radius: 8px; border: 1px solid #e0e6f0; }
.titulo-add-tambem {
    display: flex; align-items: center; gap: 8px; font-size: 1.2rem; color: var(--dark-blue);
    margin: 0 0 10px 0; padding: 0; border: none;
}
#produtos-adicionais-lista { max-height: 150px; overflow-y: auto; padding-right: 10px; }
.produto-adicional-item { display: flex; justify-content: space-between; align-items: center; padding: 8px 5px; border-bottom: 1px solid #f0f3f5; font-size: 0.9rem; }
.produto-adicional-item:last-child { border-bottom: none; }
.btn-adicionar-extra {
    border-radius: 20px; border: none; background: var(--light-blue); color: var(--primary-blue);
    font-size: 0.9rem; font-weight: 600; cursor: pointer; padding: 5px 12px;
    transition: background-color 0.2s;
}
.btn-adicionar-extra:hover { background-color: #d1e3ff; }

/* Formulário e Campos (Mantendo seu estilo original) */
.modal-form h3, .modal-form h4 {
    margin: 20px 0 15px 0; padding: 0; border-bottom: none; font-size: 1.3rem;
    display: flex; align-items: center; gap: 8px;
}
.form-group { margin-bottom: 15px; }
.modal-form label { display: block; margin-bottom: 8px; font-weight: 600; color: var(--text); }
.modal-form input, .modal-form select, .modal-form textarea {
    width: 100%; padding: 14px; border: 1px solid #e0e0e0; border-radius: 8px;
    font-family: 'Inter', sans-serif; font-size: 15px; transition: border 0.3s;
}
.modal-form input:focus, .modal-form select:focus, .modal-form textarea:focus {
    outline: none; border-color: var(--primary-blue);
}
.form-group-grid { display: grid; gap: 12px; }
.form-group-grid.cidade-bairro { grid-template-columns: 1fr 1fr; }
.form-group-grid.rua-numero { grid-template-columns: 3fr 1fr; }

/* Botões de Rádio (Entrega e Pagamento) */
.delivery-type-options, .payment-options {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 10px; margin-bottom: 20px;
}
.delivery-type-options input[type="radio"], .payment-options input[type="radio"] { display: none; }
.delivery-type-options label, .payment-options label {
    display: flex; align-items: center; justify-content: center; gap: 8px; padding: 12px;
    border: 2px solid var(--border-color); border-radius: 8px; cursor: pointer;
    transition: all 0.2s ease; font-weight: 500;
}
.delivery-type-options label:hover, .payment-options label:hover {
    border-color: var(--primary-blue); background-color: var(--light-blue);
}
.delivery-type-options input:checked + label, .payment-options input:checked + label {
    background-color: var(--light-blue); border-color: var(--primary-blue);
    color: var(--dark-blue); font-weight: 600;
}
.delivery-type-options iconify-icon, .payment-options iconify-icon { font-size: 1.4rem; }

/* Detalhes do Pagamento */
.info-bloco { background-color: #f0f3f5; padding: 15px; border-radius: 8px; margin: 10px 0; border-left: 4px solid var(--primary-blue); }
.payment-details { padding: 15px; background-color: #f0f3f5; border-radius: 8px; margin-top: 10px; }
.total-a-pagar-dinheiro-info { font-size: 0.95rem; color: var(--text-secondary); margin-bottom: 15px; padding-bottom: 10px; border-bottom: 1px dashed var(--border-color); text-align: left; }
.total-a-pagar-dinheiro-info strong { font-weight: 600; color: var(--primary-blue); }
.troco-info { margin-top: 8px; font-size: 1rem; font-weight: 600; text-align: left; min-height: 24px; }
.troco-valido { color: #28a745; }
.troco-invalido { color: #dc3545; }

/* Botões Finais do Modal (Estilo do seu exemplo) */
.modal-buttons { display: flex; gap: 15px; margin-top: 25px; }
.modal-buttons .btn, .modal-buttons .btn-outline {
    flex: 1; text-decoration: none; text-align: center;
}

/* --- INÍCIO DAS MELHORIAS VISUAIS PARA A SECÇÃO PIX (VERSÃO 2.7) --- */

/* Ajusta o contêiner principal da secção PIX */
.pix-details-box { display: flex; align-items: center; gap: 20px; padding: 20px;}

/* Aumenta o tamanho da imagem do QR Code */
#pix-qr-code-container img {  max-width: 280px; border-radius: 8px; border: 1px solid var(--border-color);}

/* Organiza o texto de informações do PIX */
.pix-info-text p {    font-size: 0.95rem;    margin: 0 0 8px 0;    text-align: left;    color: var(--text-secondary);}
.pix-info-text p strong {    color: var(--text-primary);}
.pix-info-text small {font-size: 0.85rem;color: var(--primary-blue);}


    /* Contêiner para a Chave PIX e o botão de copiar */
.pix-chave-container {    display: flex;    align-items: center;    gap: 10px; }

/* Estilo para o novo botão de "Copiar" */
.btn-copiar {
    margin-bottom: 15px;
    background: var(--light-blue);
    color: var(--primary-blue);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: background-color 0.2s;
    position: relative; 
}
.btn-copiar:hover {
    background-color: #d1e3ff;
}

/* Tooltip "Copiado!" que aparece ao clicar */
.btn-copiar .tooltip-copiado {
    position: absolute;
    bottom: 120%; /* Posição acima do botão */
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--dark-gray);
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}
.btn-copiar.copiado .tooltip-copiado {
    opacity: 1;
    visibility: visible;
}
a.btn.compras:hover {
  background: #0056b3;
}
/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary-blue);
    cursor: pointer;
}

 .payment-options {
    /*grid-template-columns: 1fr 1fr 1fr;  3 colunas em mobile */
    display: flex;
    gap: 15px;
    margin: 0 auto;
    justify-content: center;
    justify-items: center;
}
.payment-options label {
    flex-direction: column; /* Ícone em cima, texto em baixo */
    font-size: 0.85rem;
    padding: 10px 25px;
    width: 80px;        
}
.item-info {display: flex; flex-wrap: wrap;}

/* --- FIM DAS MELHORIAS VISUAIS PARA A SECÇÃO PIX --- */
/* --- Estilos para Filtros de Categoria (Página Principal) --- */
.category-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
    justify-content: center;
}
.category-filters a {
    text-decoration: none;
    background-color: var(--light-blue);
    color: var(--primary-blue);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}
.category-filters a:hover {
    background-color: var(--primary-blue);
    color: white;
}
.category-filters a.active {
    background-color: var(--primary-blue);
    color: white;
    border-color: var(--dark-blue);
}
/* --- Estilos para Tooltip de Informação --- */
.info-tooltip {
    position: absolute;
    background-color: #333;
    color: white;
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 0.85rem;
    max-width: 250px;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none; /* Impede que o tooltip interfira com o rato */
}


/* Estilos para o Carrossel de Depoimentos (Layout Vertical) */
.voice-swiper {
    width: 100%;
    padding-bottom: 50px;
}
.swiper-pagination-bullet-active {
    background-color: var(--primary-blue) !important;
}
.voice-card {:root {
    --primary-blue: #000FFF;
    --light-blue: #E6F0FF;
    --dark-blue: #001a66;
    --accent: #FF6B6B;
    --dark-gray: #1a1a2e;
    --light-gray: #f8f9fa;
    --gradient: linear-gradient(135deg, #000FFF, #5E8EFF);
    --text: #333;
    --border-color: #e0e6f0; /* Adicionando a variável que faltava */
    --gas-empty: #e0e0e0;
    --gas-full: #4CAF50;
    --payment-active: #e6f0ff;
    --payment-selected: var(--primary-blue);
    --payment-selected-text: white;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #fff;
}
h1, h2, h3, h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px; /* Leve ajuste para telas menores */
}
/* Header */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}
.logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-blue);
    letter-spacing: -0.5px;
}
.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient);
    border-radius: 50%;
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 18px;
}
nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}
nav ul li a {
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s;
    position: relative;
}
nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-blue);
    transition: width 0.3s;
}
nav ul li a:hover {
    color: var(--primary-blue);
}
nav ul li a:hover:after {
    width: 100%;
}
.btn {
    display: inline-block;
    background: var(--gradient);
    color: white;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 15, 255, 0.2);
}
.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 15, 255, 0.3);
}

/* --- INÍCIO DOS NOVOS ESTILOS PARA O MODAL DE COMPRA --- */

/* Base do Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    animation: fadeIn 0.3s ease;
    overflow-y: auto;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 25px; /* Espaçamento interno padrão */
    border-radius: 16px;
    width: 95%; /* Usar porcentagem para melhor fluidez */
    max-width: 1000px;
    position: relative;
    animation: slideIn 0.4s ease;
}
@keyframes slideIn { from { transform: translateY(-30px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

.close {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 28px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
    transition: color 0.3s;
}
.close:hover { color: var(--dark-blue); }

.modal-content h2 { color: var(--dark-blue); text-align: left; font-size: 1.8rem; margin-bottom: 8px; }
.modal-content p { color: #666; text-align: left; margin-bottom: 25px; }

/* Layout em Colunas */
.modal-compra-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 30px; }
.modal-col-right { border-left: 1px solid var(--border-color); padding-left: 30px; }
#carrinho-itens-lista { border-radius: 3px; padding: 0 5px; }
.carrinho-total { border-radius: 5px; padding: 8px; border-left: solid 3px var(--primary-blue); padding-left: 25px; }


/* Estilo de Cupom para o Carrinho */
.cupom-carrinho { background: #f7f9fc; border: 1px solid #e0e6f0; box-shadow: 0 4px 15px rgba(0,0,0,0.05); border-radius: 8px; padding: 20px; }
.cupom-carrinho h3 { display: flex; align-items: center; gap: 8px; font-size: 1.3rem; color: var(--dark-blue); margin-bottom: 15px; padding-bottom: 10px; border-bottom: 2px dashed var(--border-color); }
.cupom-itens { max-height: 160px; overflow-y: auto; padding-right: 10px; }
.carrinho-item { display: grid; grid-template-columns: 1fr auto; align-items: center; padding: 12px 0; border-bottom: 1px solid #e9eef5; }
.carrinho-item:last-child { border-bottom: none; }
.item-info { display: flex; flex-direction: column; /* Garante que o texto quebre */ gap: 4px;}
.item-info strong { font-weight: 600; font-size: 1rem; }
.item-info span { color: #555; font-size: 0.9rem; }

/* ESTILO MELHORADO PARA BOTÕES +/- */
.item-controles { display: flex; align-items: center; gap: 10px; }
.btn-quantidade { width: 30px; height: 30px; border-radius: 50%; border: 1px solid #d0d8e4; background-color: #fff; color: var(--primary-blue); font-size: 1.5rem; line-height: 0; font-weight: bold; cursor: pointer; transition: all 0.2s; }
.btn-quantidade:hover { background-color: var(--light-blue); border-color: var(--primary-blue); }
.item-controles .quantidade { font-weight: 600; font-size: 1.1rem; text-align: center; }

/* DESTAQUE NO TOTAL */
.cupom-total { margin-top: 15px; padding: 15px; border-top: 2px dashed #d0d8e4; background-color: #ffffff; border-radius: 6px; border: 1px solid #e0e6f0; }
.total-linha { display: flex; justify-content: space-between; margin-bottom: 8px; font-size: 0.95rem; }
.total-linha span { color: #555; }
.total-linha.principal { font-size: 1.4rem; font-weight: bold; color: var(--dark-blue); margin-top: 5px; }

/* "Adicione também" */
.add-mais-container { background-color: #fff; padding: 15px; border-radius: 8px; border: 1px solid #e0e6f0; }
.titulo-add-tambem { display: flex; align-items: center; gap: 8px; font-size: 1.2rem; color: var(--dark-blue); margin: 0 0 10px 0; padding: 0; border: none; }
#produtos-adicionais-lista { max-height: 150px; overflow-y: auto; padding-right: 10px; }
.produto-adicional-item { display: flex; justify-content: space-between; align-items: center; padding: 8px 5px; border-bottom: 1px solid #f0f3f5; font-size: 0.9rem; }
.produto-adicional-item:last-child { border-bottom: none; }
.btn-adicionar-extra { border-radius: 20px; border: none; background: var(--light-blue); color: var(--primary-blue); font-size: 0.9rem; font-weight: 600; cursor: pointer; padding: 5px 12px; transition: background-color 0.2s; }
.btn-adicionar-extra:hover { background-color: #d1e3ff; }

/* Formulário e Campos */
.modal-form h3, .modal-form h4 { margin: 20px 0 15px 0; padding: 0; border-bottom: none; font-size: 1.3rem; display: flex; align-items: center; gap: 8px; }
.form-group { margin-bottom: 15px; }
.modal-form label { display: block; margin-bottom: 8px; font-weight: 600; color: var(--text); }
.modal-form input, .modal-form select, .modal-form textarea { width: 100%; padding: 14px; border: 1px solid #e0e0e0; border-radius: 8px; font-family: 'Inter', sans-serif; font-size: 15px; transition: border 0.3s; }
.modal-form input:focus, .modal-form select:focus, .modal-form textarea:focus { outline: none; border-color: var(--primary-blue); }
.form-group-grid { display: grid; gap: 12px; }
.form-group-grid.cidade-bairro { grid-template-columns: 1fr 1fr; }
.form-group-grid.rua-numero { grid-template-columns: 2fr 1fr; /* Ajuste para dar mais espaço à rua */ }

/* Botões de Rádio (Entrega e Pagamento) */
.delivery-type-options { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 20px; }
/* NOVA REGRA DE RESPONSIVIDADE PARA OPÇÕES DE PAGAMENTO */
.payment-options { display: grid; grid-template-columns: repeat(auto-fit, minmax(110px, 1fr)); gap: 10px; margin-bottom: 20px; }

.delivery-type-options input[type="radio"], .payment-options input[type="radio"] { display: none; }
.delivery-type-options label, .payment-options label { display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 8px; padding: 12px 5px; border: 2px solid var(--border-color); border-radius: 8px; cursor: pointer; transition: all 0.2s ease; font-weight: 500; text-align: center; font-size: 0.85rem;}
.delivery-type-options label:hover, .payment-options label:hover { border-color: var(--primary-blue); background-color: var(--light-blue); }
.delivery-type-options input:checked + label, .payment-options input:checked + label { background-color: var(--light-blue); border-color: var(--primary-blue); color: var(--dark-blue); font-weight: 600; }
.delivery-type-options iconify-icon, .payment-options iconify-icon { font-size: 1.4rem; }

/* Detalhes do Pagamento */
.info-bloco { background-color: #f0f3f5; padding: 15px; border-radius: 8px; margin: 10px 0; border-left: 4px solid var(--primary-blue); }
.payment-details { padding: 15px; background-color: #f0f3f5; border-radius: 8px; margin-top: 10px; }
.total-a-pagar-dinheiro-info { font-size: 0.95rem; color: #555; margin-bottom: 15px; padding-bottom: 10px; border-bottom: 1px dashed var(--border-color); text-align: left; }
.total-a-pagar-dinheiro-info strong { font-weight: 600; color: var(--primary-blue); }
.troco-info { margin-top: 8px; font-size: 1rem; font-weight: 600; text-align: left; min-height: 24px; }
.troco-valido { color: #28a745; }
.troco-invalido { color: #dc3545; }

/* Botões Finais do Modal */
.modal-buttons { display: flex; flex-direction: column; gap: 10px; margin-top: 25px; } /* Mudar para coluna */
.modal-buttons .btn, .modal-buttons .btn-outline { flex: 1; text-decoration: none; text-align: center; }

/* --- MELHORIAS VISUAIS PARA A SECÇÃO PIX --- */
.pix-details-box { display: flex; flex-direction: column; align-items: center; gap: 20px; padding: 20px; }
/* NOVA REGRA PARA IMAGEM RESPONSIVA */
#pix-qr-code-container img { max-width: 100%; height: auto; /* Garante que a imagem nunca ultrapasse o contêiner */ width: 220px; border-radius: 8px; border: 1px solid var(--border-color); }
.pix-info-text p { font-size: 0.95rem; margin: 0 0 8px 0; text-align: left; color: #555; }
.pix-info-text p strong { color: #333; }
.pix-info-text small { font-size: 0.85rem; color: var(--primary-blue); }
.pix-chave-container { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; /* Permite quebrar linha se necessário */ }

.btn-copiar { margin-bottom: 15px; background: var(--light-blue); color: var(--primary-blue); border: none; width: 32px; height: 32px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 1rem; transition: background-color 0.2s; position: relative; flex-shrink: 0; }
.btn-copiar:hover { background-color: #d1e3ff; }
.btn-copiar .tooltip-copiado { position: absolute; bottom: 120%; left: 50%; transform: translateX(-50%); background-color: var(--dark-gray); color: white; padding: 4px 10px; border-radius: 4px; font-size: 0.8rem; white-space: nowrap; opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s; }
.btn-copiar.copiado .tooltip-copiado { opacity: 1; visibility: visible; }

/* --- MEDIA QUERIES PARA RESPONSIVIDADE --- */

/* Telas médias (Tablets) */
@media (max-width: 900px) {
    .modal-compra-layout { grid-template-columns: 1fr; }
    .modal-col-left { padding-right: 0; order: 2; margin-top: 20px; } 
    .modal-col-right { order: 1; border-left: none; padding-left: 0; }
}

/* Telas pequenas (Smartphones) */
@media (max-width: 768px) {
    .modal-content {
        padding: 15px;
    }
    .modal-buttons {
        flex-direction: column; /* Botões um sobre o outro */
    }
    a.btn.compras {
        display: none;
    }
}

/* Telas muito pequenas (até 300px) */
@media (max-width: 480px) {
    .form-group-grid.cidade-bairro, .form-group-grid.rua-numero { grid-template-columns: 1fr; }
    .delivery-type-options { grid-template-columns: 1fr; }
    .payment-options { grid-template-columns: 1fr 1fr; } /* Duas colunas para economizar espaço vertical */
    .pix-details-box { flex-direction: column; }
    .header-container {
        padding: 10px 0;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    .btn {
        width: 100%;
        text-align: center;
    }
}
    display: flex;
    flex-direction: column;
    align-items: center; /* Centraliza tudo horizontalmente */
    text-align: center;
    height: 100%;
    padding: 20px; /* Adiciona um espaçamento interno */
}
.voice-card p {
    flex-grow: 1; /* Garante que o card ocupe a altura total */
}
.voice-avatar {
    width: 80px; /* Foto um pouco maior */
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px; /* Espaço abaixo da foto */
    border: 3px solid var(--border-color); /* Borda opcional */
}
.voice-card h3 {
    margin-bottom: 5px;
}
.voice-card small {
    color: var(--text-secondary);
    margin-bottom: 10px;
}
.voice-stars {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 15px; /* Espaço abaixo das estrelas */
}


/* Estilos para destacar o produto em promoção do dia */
.product-card.promo-highlight {
    border: 5px solid #28a745;
    box-shadow: 0 10px 40px rgba(255, 107, 107, 0.3);
}

.product-badge.promo-dia {
    background-color: #28a745; /* Um verde para destacar a oferta */
    font-size: 0.9rem;
    padding: 6px 14px;
   
}




/* Responsividade Pop-up */
@media (max-width: 900px) {
    .modal-compra-layout { grid-template-columns: 1fr; }
    .modal-col-left { padding-right: 0; order: 1; } /* Cupom e Adicionar vêm primeiro */
    .modal-col-right { order: 2; border-left: none; padding-left: 0; }
     item-info {display: flex; flex-wrap: wrap;}
}
@media (max-width: 480px) {
    .form-group-grid.cidade-bairro, .form-group-grid.rua-numero { grid-template-columns: 1fr; }
    .delivery-type-options { grid-template-columns: 1fr; }
    
}
/* --- FIM DOS NOVOS ESTILOS PARA O MODAL DE COMPRA --- */


/* Responsive Página*/
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    .gas-tank-container {
        display: none;
    }
    .payment-options {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    a.btn.compras {
    display: none;
    }
    .mobile-menu-btn {
        display: block;
    }
    nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        padding: 30px;
        transition: left 0.3s;
        z-index: 999;
    }
    nav.active {
        left: 0;
    }
    nav ul {
        flex-direction: column;
        gap: 20px;
    }
    .header-container {
        padding: 10px 0;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    .btn {
        width: 100%;
        text-align: center;
    }
    .promo-timer {
        flex-wrap: wrap;
    }
    .product-actions {
        flex-direction: column;
    }
    .btn-info {
        width: 100%;
    }
    .app-buttons {
        flex-direction: column;
        align-items: center;
    }
    .modal-content {
        margin: 10% auto;
        width: 95%;
        padding: 20px;
    }
    .pix-details {
        grid-template-columns: 1fr;
    }
    .btn-light {
        background: white;
        color: var(--primary-blue);
     
        padding: 14px 15px;
        justify-content: center;
        text-align: center;
        justify-items: center;
    }
    .btn-promo {
        display:flex;
        flex-wrap: wrap;
        margin-top: 15px;
        
        justify-content: center;
        text-align: center;
        justify-items: center;
    }
}
