/* Reset e Configurações Globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Paleta de Cores Pastel */
    --rosa-pastel: #fcb1ad;
    --lilas-pastel: #e6d5f5;
    --verde-pastel: #88a688;
    --azul-pastel: #8fe5e5;
    --dourado: linear-gradient(90deg, #b47e00, #f6d365, #ffd700);
    --branco: #ffffff;
    --cinza-claro: #f8f9fa;
    --cinza-medio: #6c757d;
    --texto-escuro: #2c3e50;
    
	--whatsapp-green: #25D366;
    --whatsapp-dark: #128C7E;
    --shadow-soft: 0 2px 10px rgba(0,0,0,0.08);
    --shadow-medium: 0 4px 20px rgba(0,0,0,0.12);
    --shadow-strong: 0 8px 30px rgba(0,0,0,0.15);
    /* Fontes */
    --fonte-titulo: 'Dreaming Outloud Script', cursive;  
    --fonte-corpo: 'Comfortaa', Arial, sans-serif;
    
    /* Transições */
    --transicao: all 0.3s ease;
}
p, li, a {
  color: #333; 
}

body {
    font-family: var(--fonte-corpo);
    color: var(--texto-escuro);
    line-height: 1.6;
    overflow-x: hidden;
}
.logo a {
    display: inline-block; 
    width: 100%;
}
.logo-img {
    max-width: 100%;
    height: auto;
    display: block; 
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header e Navegação */
.header {
    background: linear-gradient(135deg, var(--rosa-pastel) 0%, var(--lilas-pastel) 100%);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo-text {
    font-family: var(--fonte-titulo);
    font-size: 2rem;
    color: var(--dourado);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--texto-escuro);
    font-weight: 600;
    transition: var(--transicao);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--dourado);
    transition: var(--transicao);
}

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

.nav-link:hover {
    color: var(--dourado);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--texto-escuro);
    border-radius: 3px;
    transition: var(--transicao);
}

/* Seção Hero */
.hero {
    background: linear-gradient(135deg, var(--rosa-pastel) 0%, var(--lilas-pastel) 50%, var(--azul-pastel) 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 4rem 20px;
}

.hero-content {
    z-index: 2;
    max-width: 800px;
}

.hero-title {
    font-family: var(--fonte-titulo);
    font-size: 3.5rem;
    color: var(--dourado);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--texto-escuro);
    margin-bottom: 2rem;
    font-weight: 300;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transicao);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--dourado);
    color: var(--branco);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    animation: fadeInUp 1s ease 0.4s backwards;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* Animação das Borboletas */
.hero-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.butterfly {
    position: absolute;
    font-size: 2rem;
    animation: float 6s ease-in-out infinite;
}

.butterfly-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.butterfly-2 {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.butterfly-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}



.butterfly {
  font-size: 1.7rem;
  position: absolute;
  animation: fly 6s ease-in-out infinite;
}

.butterfly-1 { filter: hue-rotate(0deg) brightness(1.2); }
.butterfly-2 { filter: hue-rotate(120deg) saturate(2); }
.butterfly-3 { filter: hue-rotate(240deg) brightness(0.9); }

@keyframes fly {
  0% { transform: translateY(0) rotate(0); opacity: 0.9; }
  50% { transform: translateY(-100px) rotate(10deg); opacity: 1; }
  100% { transform: translateY(-200px) rotate(-10deg); opacity: 0; }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    25% {
        transform: translateY(-20px) translateX(10px);
    }
    50% {
        transform: translateY(0) translateX(20px);
    }
    75% {
        transform: translateY(20px) translateX(10px);
    }
}

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

/* Seção Sobre Nós */
.about {
    padding: 5rem 0;
    background: var(--cinza-claro);
}

.section-title {
    font-family: var(--fonte-titulo);
    font-size: 2.5rem;
    color: var(--dourado);
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--cinza-medio);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.about-content {
    display: grid;
    gap: 3rem;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-text p {
    margin-bottom: 1rem;
}

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

.pillar {
    background: var(--branco);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transicao);
}

.pillar:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

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

.pillar h3 {
    color: var(--dourado);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

/* Seção Serviços */
.services {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--verde-pastel) 0%, var(--azul-pastel) 100%);
}

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

.service-card {
    background: var(--branco);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transicao);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.nav-link, .btn, .service-card {
    min-height: 44px;
    min-width: 44px;
}

.service-card:nth-child(1),
.service-card:nth-child(2),
.service-card:nth-child(3) {
    border: 2px solid var(--lilas-pastel);
    transform: scale(1.02);
}

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

.service-card h3 {
    color: var(--dourado);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.service-card p {
    color: var(--cinza-medio);
    line-height: 1.6;
}

/* Seção Contato */
.contact {
    padding: 5rem 0;
    background: var(--cinza-claro);
}

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

.contact-info h3 {
    color: var(--dourado);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

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

.contact-link {
    color: var(--dourado);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transicao);
}

.contact-link:hover {
    text-decoration: underline;
}

.contact-form-container {
    background: var(--branco);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--lilas-pastel);
    border-radius: 8px;
    font-family: var(--fonte-corpo);
    font-size: 1rem;
    transition: var(--transicao);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--dourado);
}

.contact-form .btn-primary {
    width: 100%;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--rosa-pastel) 0%, var(--lilas-pastel) 100%);
    padding: 3rem 0 1rem;
}

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

.footer-section h3 {
    color: var(--dourado);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.footer-link {
    color: var(--dourado);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transicao);
}

.footer-link:hover {
    text-decoration: underline;
}

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

/* Responsividade */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
	 .nav-menu li {
        width: 100%;
    }

    .nav-menu li a {
        display: block;       
        width: 100%;
        padding: 1rem;        
    }
	
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, var(--rosa-pastel) 0%, var(--lilas-pastel) 100%);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        transform: translateX(-100%);
        transition: var(--transicao);
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
	
	 /* ✅ CORREÇÃO DO ALINHAMENTO DO MENU MOBILE */
    .nav-menu {
        display: flex;
        align-items: center;
    }
    
    .nav-menu li {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .nav-menu li a {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    /* ✅ CORREÇÃO ESPECÍFICA DO INSTAGRAM NO MOBILE */
    .instagram-link {
        display: flex !important;
        justify-content: center;
        align-items: center;
        font-size: 1.8rem;
        padding: 1rem;
    }
}



/* Estilos para a imagem da logo */
.logo-img {
    height: 60px;
    width: auto;
    vertical-align: middle; 
    padding: 5px;
    border-radius: 8px;
}

.footer-logo-img {
    height: 80px; /* Ajuste conforme necessário */
    width: auto;
    vertical-align: middle;
    margin-bottom: 0.5rem;
    background-color: white;
    padding: 8px;
    border-radius: 8px;
}



/* Carousel Styles */
.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 3rem;
}

.carousel-track {
    display: flex;
    gap: 20px; /* espaço entre os cards */
    transition: transform 0.5s ease-in-out;
}

.carousel-item {
    flex: 0 0 calc(33.333% - 20px); /* 3 itens + gap de 20px */
    box-sizing: border-box;
}

.service-card {
    background-color: #fff;
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    height: 350px; /* altura fixa */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.service-card .service-icon {
    font-size: 50px;
    margin-bottom: 15px;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(212, 175, 55, 0.8);
    color: #fff;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 1.5rem;
    border-radius: 50%;
    z-index: 10;
    transition: background-color 0.3s ease;
}

.carousel-button:hover {
    background-color: #d4af37;
}

.carousel-button.prev {
    left: 10px;
}

.carousel-button.next {
    right: 10px;
}

/* Responsividade */
@media (max-width: 1024px) {
    .carousel-item {
        flex: 0 0 calc(50% - 20px); /* 2 itens */
    }
}

@media (max-width: 768px) {
    .carousel-item {
        flex: 0 0 100%; /* 1 item */
    }
} 

/* Botão Agendar Consulta no topo */
.btn-agendar {
    background-color: var(--dourado);
    color: var(--branco);
    padding: 8px 16px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transicao);
    display: inline-block;
	margin-top: -5px;
}

.btn-agendar:hover {
    background-color: #B8941F;
    transform: translateY(-2px);
}

/* Link do Instagram no topo */
.instagram-link {
    font-size: 1.5rem;
    text-decoration: none;
    transition: var(--transicao);
	display: inline-block;
    vertical-align: middle; /* ✅ Alinha com elementos inline */
    line-height: 1; /* ✅ Remove espaçamento extra */
}

.instagram-link:hover {
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .btn-agendar {
        display: block;
        text-align: center;
        margin: 10px 0;
    }
}



/* Seção Corpo Clínico */
.team {
    padding: 5rem 0;
    background: var(--cinza-claro);
}

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

.team-member {
    background: var(--branco);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transicao);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.member-photo {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.team-member h3 {
    color: var(--dourado);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.member-role {
    color: var(--cinza-medio);
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-description {
    color: var(--texto-escuro);
    line-height: 1.6;
    font-size: 0.95rem;
}

img[loading="lazy"] {
	opacity: 1 !important;
    transition: opacity 0.5s ease;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* Animação Flourish para o Hero */
.hero-content {
    animation: flourish 1.2s ease-out;
}

@keyframes flourish {
    0% {
        opacity: 0;
        transform: scale(0.9) translateY(30px);
    }
    60% {
        opacity: 0.8;
        transform: scale(1.02) translateY(5px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }		
}

/* Stagger para os cards - aparece em sequência */
.service-card, .team-member, .pillar {
    transition-delay: calc(var(--delay) * 0.1s);
}

/* WhatsApp Widget Inteligente */
.wc_whatsapp_app {
    position: fixed;
    bottom: 30px;
    right: 15px;
    z-index: 10000;
    display: flex;
    align-items: center;
}

.wc_whatsapp {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #25d366;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
}

.wc_whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.4);
}

.wc_whatsapp::before {
    content: "";
    display: block;
    width: 30px;
    height: 30px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" fill="white"><path d="M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z"/></svg>') center/contain no-repeat;
}

.wc_whatsapp_secondary {
    display: none;
}

.wc_whatsapp_primary {
    display: none;
    position: absolute;
    bottom: 80px;
    right: 0;
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    max-width: 250px;
    animation: fadeInUp 0.5s ease;
}

.wc_whatsapp_primary p {
    margin: 0;
    color: #333;
    font-size: 14px;
    line-height: 1.4;
}

.wc_whatsapp_primary::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid white;
}

/* Mostrar mensagem principal após alguns segundos */
.wc_whatsapp_app.show-primary .wc_whatsapp_primary {
    display: block;
}

/* Mobile */
@media (max-width: 768px) {
    .wc_whatsapp_app {
        bottom: 20px;
        right: 20px;
    }
    
    .wc_whatsapp {
        width: 55px;
        height: 55px;
    }
    
    .wc_whatsapp_primary {
        max-width: 200px;
        right: -50px;
    }
}

/* ==========================================================================
   OTIMIZAÇÕES 2024 - APENAS MELHORIAS ESSENCIAIS
   ========================================================================== */

/* 1. HEADER COM GLASS EFFECT (melhora visual) */
.header {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); /* Safari */
    background: rgba(252, 177, 173, 0.95);
}

/* 2. BOTÃO WHATSAPP MAIS CONVERSIVO */
.btn-agendar {
    background: linear-gradient(135deg, #4CAF50, #45a049) !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3) !important;
}

.btn-agendar:hover {
    background: linear-gradient(135deg, #45a049, #4CAF50) !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4) !important;
}

/* 3. LINKS DE NAVEGAÇÃO MAIS ELEGANTES */
.nav-link {
    font-weight: 600;
    position: relative;
}

/* 4. WIDGET WHATSAPP COM PULSO SUAVE */
.wc_whatsapp {
    animation: pulse-suave 2s infinite;
}

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

.wc_whatsapp:hover {
    animation: none;
    transform: scale(1.1);
}

/* 5. MELHORIA DE PERFORMANCE MOBILE */
@media (max-width: 768px) {
    .hero {
        background-attachment: scroll; /* Melhora performance */
    }
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: auto;
        background: linear-gradient(135deg, var(--rosa-pastel) 0%, var(--lilas-pastel) 100%);
        flex-direction: column;
        padding: 1.5rem 2rem;
        gap: 0.8rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
        max-height: 70vh;
        overflow-y: auto;
        box-shadow: 0 5px 20px rgba(0,0,0,0.15);
        border-radius: 0 0 15px 15px;
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu li a {
        display: block;
        width: 100%;
        padding: 1rem;
        text-align: center;
        border-radius: 8px;
        transition: background-color 0.3s ease;
    }
    
    .nav-menu li a:hover {
        background-color: rgba(255,255,255,0.2);
    }
    
    /* Botão Agendar fica destacado */
    .nav-menu .btn-agendar {
        background: linear-gradient(135deg, #25D366, #128C7E);
        color: white;
        margin-top: 0.5rem;
        text-align: center;
    }
	.contact-form {
        padding: 1.5rem;
    }
    
    .form-group input,
    .form-group textarea {
        font-size: 16px; /* Evita zoom no iOS */
    }
	
	 .nav-menu li a {
        padding: 1.2rem 1rem; /* Área de toque maior */
    }
} 
 
/* Toast Notification Moderna */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--whatsapp-green);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 10001;
    opacity: 0;
    transition: all 0.3s ease;
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
} 
 