/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Space Mono', monospace;
    background: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
    position: relative;
}

/* Animação de estrelas no fundo */
.stars, .twinkling {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: -1;
}

.stars {
    background: #000000 url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="300" height="300" viewBox="0 0 300 300"><defs><radialGradient id="star" cx="50%" cy="50%" r="50%"><stop offset="0%" style="stop-color:white;stop-opacity:1" /><stop offset="100%" style="stop-color:white;stop-opacity:0" /></radialGradient></defs><circle cx="50" cy="50" r="1" fill="url(%23star)" /><circle cx="150" cy="100" r="0.5" fill="url(%23star)" /><circle cx="250" cy="150" r="1" fill="url(%23star)" /><circle cx="100" cy="200" r="0.5" fill="url(%23star)" /><circle cx="200" cy="250" r="1" fill="url(%23star)" /></svg>') repeat;
    animation: move-twink-back 200s linear infinite;
}

.twinkling {
    background: transparent url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200"><circle cx="30" cy="30" r="1" fill="white" opacity="0.8"><animate attributeName="opacity" values="0.8;0.2;0.8" dur="3s" repeatCount="indefinite"/></circle><circle cx="120" cy="80" r="0.5" fill="white" opacity="0.6"><animate attributeName="opacity" values="0.6;0.1;0.6" dur="2s" repeatCount="indefinite"/></circle><circle cx="170" cy="140" r="1" fill="white" opacity="0.9"><animate attributeName="opacity" values="0.9;0.3;0.9" dur="4s" repeatCount="indefinite"/></circle></svg>') repeat;
    animation: move-twink-back 100s linear infinite;
}

@keyframes move-twink-back {
    from { background-position: 0 0; }
    to { background-position: -10000px 5000px; }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 30px 0;
    text-align: center;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
    position: relative;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M1200,40L1080,50C960,60,720,80,480,85C240,90,0,80,120,70L240,60L360,50L480,40L600,30L720,20L840,10L960,20L1080,30L1200,40Z" fill="rgba(255,255,255,0.1)"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.7;
}

.logo {
    position: relative;
    z-index: 2;
}

.logo i {
    font-size: 3rem;
    color: #FFD700;
    margin-bottom: 10px;
    animation: rocket-float 3s ease-in-out infinite;
}

@keyframes rocket-float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

.logo h1 {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    margin: 10px 0;
    letter-spacing: 3px;
}

.logo p {
    font-size: 1.2rem;
    color: #FFD700;
    font-style: italic;
}

/* Welcome Section */
.welcome-section {
    text-align: center;
    padding: 40px 0;
    background: linear-gradient(45deg, rgba(106, 92, 206, 0.1), rgba(253, 121, 168, 0.1));
    border-radius: 20px;
    margin: 30px 0;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.welcome-section h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    color: #FFD700;
    margin-bottom: 15px;
}

.welcome-section p {
    font-size: 1.1rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
}

/* Menu Container */
.menu-container {
    padding: 20px 0;
}

/* Categoria Card */
.categoria-card {
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.2), rgba(162, 155, 254, 0.2));
    border-radius: 20px;
    margin: 30px 0;
    padding: 30px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.categoria-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(108, 92, 231, 0.3);
}

.categoria-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
}

.categoria-icon {
    font-size: 3rem;
    margin-right: 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.categoria-info h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    color: #FFD700;
    margin-bottom: 5px;
}

.categoria-info p {
    color: #cccccc;
    font-size: 1rem;
}

/* Grid de Sabores */
.sabores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

/* Card de Sabor */
.sabor-card {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(108, 92, 231, 0.1));
    border-radius: 15px;
    padding: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.sabor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.5s;
}

.sabor-card:hover::before {
    left: 100%;
}

.sabor-card:hover {
    transform: translateY(-3px);
    border-color: #FFD700;
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.2);
}

.sabor-card.destaque {
    border: 2px solid #FFD700;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(108, 92, 231, 0.1));
}

.sabor-card.destaque::after {
    content: '⭐';
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.5rem;
    z-index: 2;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
}

.sabor-header {
    margin-bottom: 20px;
    padding-right: 10px;
}

.sabor-nome {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.3;
    padding-right: 40px; /* Espaço para a estrela */
}

.sabor-preco {
    font-size: 1.6rem;
    font-weight: bold;
    color: #FFD700;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
    margin-top: 15px;
    text-align: center;
    padding: 10px 12px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.sabor-descricao {
    color: #e0e0e0;
    margin-bottom: 18px;
    line-height: 1.5;
    font-size: 1rem;
    padding: 8px 0;
}

.sabor-ingredientes {
    font-size: 0.9rem;
    color: #b8b8b8;
    font-style: italic;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 12px;
    border-radius: 8px;
    border-left: 3px solid rgba(255, 215, 0, 0.5);
    margin-top: 10px;
    margin-bottom: 10px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    margin: 5% auto;
    padding: 30px;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.close {
    color: #FFD700;
    float: right;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.close:hover {
    color: #ffffff;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(108, 92, 231, 0.2));
    padding: 30px 0;
    text-align: center;
    margin-top: 50px;
    border-top: 2px solid rgba(255, 215, 0, 0.3);
}

.footer p {
    margin-bottom: 15px;
    color: #cccccc;
}

.social-links a {
    text-decoration: none;
    color: inherit;
}

.social-links i {
    font-size: 2rem;
    color: #FFD700;
    margin: 0 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.social-links a:hover i,
.social-links i:hover {
    color: #ffffff;
    transform: scale(1.2);
}

/* Loading Animation */
.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
}

.loading::after {
    content: '';
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 215, 0, 0.3);
    border-top: 5px solid #FFD700;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsividade para dispositivos móveis */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .logo h1 {
        font-size: 2.5rem;
    }
    
    .logo i {
        font-size: 2.5rem;
    }
    
    .welcome-section h2 {
        font-size: 1.5rem;
    }
    
    .categoria-header {
        flex-direction: column;
        text-align: center;
    }
    
    .categoria-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .categoria-info h2 {
        font-size: 1.5rem;
    }
    
    .sabores-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .sabor-nome {
        font-size: 1.2rem;
        padding-right: 60px; /* Menos espaço em mobile */
    }
    
    .sabor-preco {
        font-size: 1.6rem;
        text-align: center;
        margin-bottom: 12px;
    }
    
    .modal-content {
        margin: 10% auto;
        width: 95%;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .logo i {
        font-size: 2rem;
    }
    
    .categoria-card {
        padding: 20px;
        margin: 20px 0;
    }
    
    .sabor-card {
        padding: 18px;
    }
    
    .sabor-nome {
        font-size: 1.1rem;
        padding-right: 50px;
    }
    
    .sabor-preco {
        font-size: 1.5rem;
        padding: 6px 10px;
    }
    
    .sabor-descricao {
        font-size: 0.95rem;
    }
    
    .sabor-ingredientes {
        font-size: 0.85rem;
        padding: 8px 10px;
    }
}

/* Novos estilos para sistema personalizado */

/* Descrição do funcionamento */
.funcionamento-desc {
    color: #888;
    font-style: italic;
    margin-top: 5px;
    display: block;
}

/* Container Monte Seu Pastel */
.monte-seu-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 20px;
}

.precos-container h3,
.ingredientes-container h3 {
    color: #FFD700;
    margin-bottom: 15px;
    font-family: 'Orbitron', monospace;
}

/* Grid de preços */
.precos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.preco-item {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.preco-item:hover {
    transform: translateY(-2px);
    border-color: #FFD700;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

.preco-item .quantidade {
    font-weight: bold;
    color: #fff;
    margin-bottom: 8px;
}

.preco-item .valor {
    font-size: 1.3rem;
    color: #FFD700;
    font-weight: bold;
}

/* Grid de ingredientes */
.ingredientes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px;
}

.ingrediente-item {
    display: flex;
    align-items: center;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.ingrediente-item:hover {
    background: rgba(255, 215, 0, 0.1);
}

.ingrediente-item i {
    color: #4CAF50;
    margin-right: 10px;
}

.ingrediente-item span {
    color: #fff;
}

/* Botão montar */
.btn-montar {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #000;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    width: 100%;
}

.btn-montar:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

/* Container Sabor Único */
.sabor-unico-container {
    margin-top: 20px;
}

.preco-fixo {
    text-align: center;
    margin-bottom: 20px;
}

.preco-fixo h3 {
    color: #FFD700;
    font-size: 1.5rem;
    font-family: 'Orbitron', monospace;
}

.sabores-disponiveis {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.sabor-opcao {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.sabor-opcao:hover {
    transform: translateY(-3px);
    border-color: #FFD700;
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.2);
}

.sabor-opcao .sabor-nome {
    font-size: 1.1rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 10px;
}

.sabor-opcao .sabor-preco {
    color: #FFD700;
    font-size: 1.3rem;
    font-weight: bold;
}

/* Sabor Card Premium */
.sabor-card.premium {
    border: 2px solid rgba(255, 215, 0, 0.5);
}

.sabor-card.premium:hover {
    border-color: #FFD700;
}

/* Loading e Error States */
.loading {
    text-align: center;
    padding: 50px;
    color: #FFD700;
}

.loading i {
    font-size: 3rem;
    margin-bottom: 20px;
}

.error-message {
    text-align: center;
    padding: 50px;
    color: #ff6b6b;
}

.error-message i {
    font-size: 3rem;
    margin-bottom: 20px;
}

.error-message button {
    background: #FFD700;
    color: #000;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 15px;
}

/* Responsividade adicional para novos elementos */
@media (max-width: 768px) {
    .monte-seu-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .precos-grid {
        grid-template-columns: 1fr;
    }

    .ingredientes-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .sabores-disponiveis {
        grid-template-columns: 1fr;
    }

    .montador-modal-content {
        width: 95% !important;
        max-height: 90vh;
        overflow-y: auto;
    }

    .montador-body {
        flex-direction: column;
    }

    .ingredientes-montador {
        grid-template-columns: 1fr !important;
    }
}

/* Estilos para o Modal do Montador */
.montador-modal-content {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    margin: 2% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 900px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    border: 2px solid rgba(255, 215, 0, 0.3);
    max-height: 95vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.montador-header {
    background: linear-gradient(90deg, #FFD700, #FFA500);
    color: #000;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 20px 20px 0 0;
}

.montador-header h2 {
    margin: 0;
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
}

.montador-header .close {
    color: #000;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    transition: all 0.3s ease;
}

.montador-header .close:hover {
    transform: scale(1.2);
}

.montador-body {
    padding: 30px;
    display: flex;
    gap: 30px;
    flex: 1;
    overflow-y: auto;
}

.sabores-section {
    flex: 2;
}

.resumo-section {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    height: fit-content;
}

.sabores-section h3,
.resumo-section h3 {
    color: #FFD700;
    margin-bottom: 20px;
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
}

.ingredientes-montador {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.ingrediente-checkbox {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.ingrediente-checkbox:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.5);
}

.ingrediente-checkbox input[type="checkbox"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    accent-color: #FFD700;
}

.ingrediente-checkbox label {
    color: #fff;
    cursor: pointer;
    flex: 1;
    font-weight: 500;
}

.ingrediente-checkbox input[type="checkbox"]:checked + label {
    color: #FFD700;
    font-weight: bold;
}

.sabores-selecionados {
    margin-bottom: 20px;
    min-height: 60px;
}

.sabores-lista {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.sabor-selecionado {
    background: rgba(255, 215, 0, 0.2);
    color: #FFD700;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.total-sabores {
    color: #ccc;
    font-style: italic;
    margin: 0;
}

.preco-atual {
    background: rgba(255, 215, 0, 0.1);
    padding: 15px;
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    text-align: center;
    margin-bottom: 20px;
}

.preco-label {
    color: #ccc;
    font-size: 1rem;
}

.preco-valor {
    color: #FFD700;
    font-size: 1.5rem;
    font-weight: bold;
    font-family: 'Orbitron', monospace;
}

.precos-referencia {
    margin-top: 20px;
}

.precos-referencia h4 {
    color: #FFD700;
    margin-bottom: 10px;
    font-size: 1rem;
}

.precos-lista {
    display: grid;
    gap: 8px;
}

.preco-ref {
    display: flex;
    justify-content: space-between;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
    color: #ccc;
    font-size: 0.9rem;
}

.preco-ref span:last-child {
    color: #FFD700;
    font-weight: bold;
}

.montador-footer {
    padding: 20px 30px;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0 0 20px 20px;
    min-height: 60px;
}

.montador-footer .preco-atual {
    font-size: 1.3rem;
    font-weight: bold;
    text-align: center;
}

.montador-footer .preco-label {
    color: #ccc;
    margin-right: 10px;
}

.montador-footer .preco-valor {
    color: #FFD700;
    font-size: 1.5rem;
}

.btn-fechar {
    background: rgba(255, 215, 0, 0.2);
    color: #FFD700;
    border: 2px solid #FFD700;
    padding: 12px 30px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-fechar:hover {
    background: #FFD700;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

.info-pedido {
    margin-top: 15px;
    padding: 15px;
    background: rgba(52, 152, 219, 0.1);
    border: 1px solid rgba(52, 152, 219, 0.3);
    border-radius: 10px;
    color: #3498db;
    font-size: 0.9rem;
    line-height: 1.5;
}

.info-pedido i {
    margin-right: 8px;
    color: #3498db;
}

.btn-cancelar {
    background: rgba(255, 107, 107, 0.2);
    color: #ff6b6b;
    border: 2px solid #ff6b6b;
    padding: 12px 25px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    transition: all 0.3s ease;
    flex: 1;
}

.btn-cancelar:hover {
    background: #ff6b6b;
    color: #fff;
}

.btn-adicionar {
    background: rgba(255, 215, 0, 0.2);
    color: #FFD700;
    border: 2px solid #FFD700;
    padding: 12px 25px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    transition: all 0.3s ease;
    flex: 2;
}

.btn-adicionar.enabled {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #000;
    border-color: #FFD700;
}

.btn-adicionar.enabled:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

.btn-adicionar:disabled,
.btn-adicionar.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-adicionar:disabled:hover {
    transform: none;
    box-shadow: none;
}

/* ========================================
   BOTÃO WHATSAPP FLUTUANTE
========================================= */

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
    animation: whatsappPulse 2s infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
    animation: none;
}

.whatsapp-float a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: relative;
}

.whatsapp-float i {
    font-size: 28px;
    line-height: 60px;
    transition: all 0.3s ease;
}

.whatsapp-text {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: #25d366;
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 500;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.whatsapp-text::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid #25d366;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

.whatsapp-float:hover .whatsapp-text {
    opacity: 1;
    visibility: visible;
    right: 75px;
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.7);
        transform: scale(1.05);
    }
    100% {
        box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    }
}

/* Responsividade para o botão WhatsApp */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-float i {
        font-size: 24px;
        line-height: 55px;
    }
    
    .whatsapp-text {
        font-size: 13px;
        padding: 6px 10px;
        right: 65px;
    }
    
    .whatsapp-float:hover .whatsapp-text {
        right: 70px;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 10px;
        right: 10px;
    }
    
    .whatsapp-float i {
        font-size: 22px;
        line-height: 50px;
    }
    
    .whatsapp-text {
        font-size: 12px;
        padding: 5px 8px;
        right: 60px;
    }
    
    .whatsapp-float:hover .whatsapp-text {
        right: 65px;
    }
}

/* Garantir que o botão aparece acima de outros elementos */
.whatsapp-float {
    z-index: 9999;
}
