/* Reset e Variáveis */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: #C8102E;
    --primary-red-dark: #A00D26;
    --primary-orange: #FF6B35;
    --primary-yellow: #FFC107;
    --text-dark: #212529;
    --text-gray: #6C757D;
    --bg-light: #F8F9FA;
    --bg-white: #FFFFFF;
    --border-color: #DEE2E6;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 10px 40px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Header */
.header {
    background: var(--primary-red) !important;
    background-image: none !important;
    padding: 1.25rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.header.scrolled {
    padding: 0.75rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

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

.logo-img {
    height: 50px;
    width: auto;
    transition: var(--transition);
}

.logo-img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-yellow);
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--primary-yellow);
}

.nav-menu a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 0.5rem;
    transition: var(--transition);
}

.menu-toggle:hover {
    opacity: 0.8;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 6rem 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    background-image: url('../images/hero-mulher-app-bg.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(200, 16, 46, 0.3) 0%, rgba(255, 107, 53, 0.25) 100%);
    z-index: 1;
    animation: fadeIn 1s ease-out;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    background: rgba(0, 0, 0, 0.25);
    opacity: 1;
}

.hero .container {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    max-width: 800px;
    animation: fadeInUp 0.8s ease-out;
}

.hero-badge {
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.badge-text {
    display: inline-block;
    background: var(--primary-yellow);
    color: var(--text-dark);
    padding: 0.625rem 1.75rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
    transition: var(--transition);
}

.badge-text:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
}

.hero-title {
    color: white;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.3s both;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5), 0 4px 20px rgba(0, 0, 0, 0.3);
}

.title-main {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.title-sub {
    display: block;
    font-size: 2rem;
    font-weight: 400;
    opacity: 0.95;
    letter-spacing: -0.01em;
}

.hero-description {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease-out 0.4s both;
    max-width: 90%;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5), 0 2px 15px rgba(0, 0, 0, 0.3);
}

.hero-description strong {
    color: var(--primary-yellow);
    font-weight: 700;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.stat-item {
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-3px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-yellow);
    line-height: 1;
    text-shadow: 0 2px 10px rgba(255, 193, 7, 0.3);
}

.stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin-top: 0.5rem;
    font-weight: 500;
}

.hero-cta {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}


/* Seção Destaque Poço Fundo */
.poco-fundo-destaque {
    background: var(--primary-yellow);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.poco-fundo-destaque::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 6s ease-in-out infinite;
}


.destaque-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.destaque-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: pulse 2s ease-in-out infinite;
}

.destaque-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.destaque-text {
    font-size: 1.25rem;
    color: var(--text-dark);
    line-height: 1.8;
    max-width: 90%;
    margin: 0 auto;
}

.destaque-text strong {
    color: var(--primary-red);
    font-weight: 700;
}

/* Botões */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.25rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--primary-yellow);
    color: var(--text-dark);
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.btn-primary:hover {
    background: #FFB300;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 193, 7, 0.4);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-secondary {
    background: white;
    color: var(--primary-red);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background: var(--bg-light);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.btn-secondary:active {
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-red);
    color: var(--primary-red);
}

.btn-outline:hover {
    background: var(--primary-red);
    color: white;
    border-color: var(--primary-red);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(200, 16, 46, 0.3);
}

/* Seção Encontrar Loja */
.encontrar-loja {
    padding: 6rem 0;
    background: var(--bg-light);
}

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3.5rem;
    color: var(--text-dark);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.busca-loja {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.busca-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.busca-form:hover {
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.12);
}

.select-input {
    padding: 1.125rem 1.25rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: white;
    cursor: pointer;
}

.select-input:hover {
    border-color: var(--primary-red);
}

.select-input:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.1);
}

.btn-buscar {
    grid-column: 1 / -1;
    width: 100%;
}

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

.loja-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 1px solid transparent;
}

.loja-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-red);
}

.loja-card h3 {
    color: var(--primary-red);
    margin-bottom: 1.25rem;
    font-size: 1.5rem;
    line-height: 1.3;
    transition: var(--transition);
}

.loja-card:hover h3 {
    color: var(--primary-red-dark);
}

.loja-card p {
    color: var(--text-gray);
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.loja-card .loja-badge {
    display: inline-block;
    background: var(--primary-yellow);
    color: var(--text-dark);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 1rem;
}

/* Seção App */
.app-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-red) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.app-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 5s ease-in-out infinite;
}

.app-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.app-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.app-title .highlight {
    color: var(--primary-yellow);
}

.app-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    opacity: 0.95;
}

.app-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.app-badge {
    transition: var(--transition);
}

.app-badge img {
    height: 60px;
    width: auto;
    transition: var(--transition);
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2));
}

.app-badge:hover {
    transform: translateY(-3px);
}

.app-badge:hover img {
    transform: scale(1.08);
    filter: drop-shadow(0 6px 15px rgba(0, 0, 0, 0.3));
}

.app-img {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    display: block;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

/* Seção Promoções */
.promocoes {
    padding: 6rem 0;
    background: white;
}

.promocoes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.promocao-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    position: relative;
    border: 1px solid transparent;
}

.promocao-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-red);
}

.promocao-badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: var(--primary-red);
    color: white;
    padding: 0.625rem 1.25rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(200, 16, 46, 0.3);
    transition: var(--transition);
}

.promocao-card:hover .promocao-badge {
    transform: scale(1.05);
}

.promocao-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background: var(--bg-light);
}

.promocao-img[src$=".svg"] {
    object-fit: contain;
    padding: 1rem;
}

.promocao-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.promocao-content h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    line-height: 1.3;
    transition: var(--transition);
}

.promocao-card:hover .promocao-content h3 {
    color: var(--primary-red);
}

.promocao-content p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    flex: 1;
}

/* Seção Blog */
.blog-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 3.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

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

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 1px solid transparent;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-red);
}

.blog-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: var(--bg-light);
}

.blog-img[src$=".svg"] {
    object-fit: contain;
    padding: 1rem;
}

.blog-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-content h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    line-height: 1.4;
    transition: var(--transition);
}

.blog-card:hover .blog-content h3 {
    color: var(--primary-red);
}

.blog-content p {
    color: var(--text-gray);
    margin-bottom: 1rem;
    flex: 1;
    line-height: 1.7;
}

.blog-link {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-link:hover {
    color: var(--primary-red-dark);
    gap: 0.75rem;
}

/* Seção Contato */
.contato {
    padding: 6rem 0;
    background: white;
}

.contato-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-light);
    padding: 3.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.contato-form:hover {
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.12);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1.125rem 1.25rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: white;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: var(--primary-red);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.1);
}

.btn-submit {
    width: 100%;
    margin-top: 1rem;
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.form-message {
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    font-weight: 500;
    animation: fadeInUp 0.5s ease-out;
}

.form-message-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-message-info {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 5rem 0 2rem;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-text {
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-yellow);
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-yellow);
}

.footer-address {
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

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

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-yellow);
    transform: translateY(-3px);
}

.social-link img {
    width: 24px;
    height: 24px;
    transition: var(--transition);
    filter: brightness(0) invert(1);
}

.social-link:hover img {
    filter: none;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom strong {
    color: var(--primary-yellow);
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--primary-red);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        padding: 2rem 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        padding: 1rem 0;
    }

    .nav-menu a {
        display: block;
        padding: 0.75rem 0;
    }

    .nav-menu a::after {
        display: none;
    }

    .hero {
        min-height: 600px;
        padding: 4rem 0;
    }

    .hero-background {
        background-position: center center;
        background-size: cover;
        background-attachment: scroll;
    }

    .hero .container {
        text-align: center;
        align-items: center;
    }

    .title-main {
        font-size: 2.5rem;
    }

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

    .hero-description {
        max-width: 100%;
        font-size: 1.1rem;
    }

    .hero-stats {
        justify-content: center;
        gap: 2rem;
    }

    .app-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .app-image {
        display: none;
    }

    .app-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .destaque-title {
        font-size: 2rem;
    }

    .busca-form {
        grid-template-columns: 1fr;
        padding: 2rem;
    }

    .contato-form {
        padding: 2rem 1.5rem;
    }

    .promocoes-grid,
    .blog-grid,
    .lojas-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .title-main {
        font-size: 2rem;
    }

    .title-sub {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        padding: 1rem 1.5rem;
    }

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

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

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

    .busca-form {
        padding: 1.5rem;
    }

    .contato-form {
        padding: 1.5rem;
    }
}

/* Botões Flutuantes WhatsApp */
.whatsapp-buttons {
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    z-index: 99999 !important;
    display: flex !important;
    flex-direction: column;
    gap: 8px;
    pointer-events: auto;
    align-items: flex-end;
    visibility: visible !important;
    opacity: 1 !important;
}

.capsulino-image {
    margin-bottom: 0;
    display: flex;
    justify-content: flex-end;
    align-self: flex-end;
}

.capsulino-img {
    width: 50px !important;
    max-width: 50px !important;
    height: auto !important;
    display: block !important;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.2));
    transition: var(--transition);
    animation: float 3s ease-in-out infinite;
    cursor: pointer;
    object-fit: contain;
}

.capsulino-img:hover {
    animation-play-state: paused;
    transform: translateY(-3px) scale(1.05);
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}



.whatsapp-btn {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    align-items: center;
    gap: 12px;
    background: #25D366;
    color: white;
    padding: 14px 20px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    font-weight: 600;
    min-width: 200px;
    position: relative;
    overflow: hidden;
    visibility: visible !important;
    opacity: 1 !important;
}

.whatsapp-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.whatsapp-btn:hover::before {
    width: 300px;
    height: 300px;
}

.whatsapp-btn:hover {
    background: #20BA5A;
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn:active {
    transform: translateY(-1px);
}

.whatsapp-btn svg {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.whatsapp-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.3;
}

.whatsapp-label {
    font-size: 1rem;
    font-weight: 700;
    display: block;
}

.whatsapp-subtitle {
    font-size: 0.85rem;
    font-weight: 500;
    opacity: 0.95;
    display: block;
}

.whatsapp-btn-2 {
    background: #128C7E;
    box-shadow: 0 4px 20px rgba(18, 140, 126, 0.4);
}

.whatsapp-btn-2:hover {
    background: #0E7A6E;
    box-shadow: 0 6px 30px rgba(18, 140, 126, 0.5);
}

/* Animação de pulso para os botões */
@keyframes whatsapp-pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(37, 211, 102, 0.6);
    }
}

.whatsapp-btn-1 {
    animation: whatsapp-pulse 2s ease-in-out infinite;
}

@keyframes whatsapp-pulse-2 {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(18, 140, 126, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(18, 140, 126, 0.6);
    }
}

.whatsapp-btn-2 {
    animation: whatsapp-pulse-2 2s ease-in-out infinite 0.5s;
}

/* Responsive para botões WhatsApp */
@media (max-width: 768px) {
    .whatsapp-buttons {
        bottom: 15px;
        right: 15px;
        gap: 8px;
    }

    .capsulino-img {
        width: 45px !important;
        max-width: 45px !important;
    }

    .whatsapp-btn {
        padding: 12px 16px;
        min-width: 180px;
        gap: 10px;
    }

    .whatsapp-btn svg {
        width: 24px;
        height: 24px;
    }

    .whatsapp-label {
        font-size: 0.9rem;
    }

    .whatsapp-subtitle {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .whatsapp-buttons {
        bottom: 10px;
        right: 10px;
        gap: 6px;
    }

    .capsulino-img {
        width: 40px !important;
        max-width: 40px !important;
    }

    .whatsapp-btn {
        padding: 10px 14px;
        min-width: 160px;
        gap: 8px;
    }

    .whatsapp-btn svg {
        width: 22px;
        height: 22px;
    }

    .whatsapp-label {
        font-size: 0.85rem;
    }

    .whatsapp-subtitle {
        font-size: 0.75rem;
    }
}

