/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    overflow-x: hidden;
    position: relative;
    background: linear-gradient(135deg, #fdf7f0 0%, #f5e6d3 100%);
}

/* Tipografia moderna */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.3;
}

h1 { font-size: 3.2rem; font-weight: 700; }
h2 { font-size: 2.8rem; font-weight: 600; }
h3 { font-size: 2.2rem; font-weight: 600; }
h4 { font-size: 1.8rem; font-weight: 500; }

p, span, div {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

/* Container das células da pele */
.skin-cells-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 1000;
    overflow: hidden;
}

/* Células da pele base */
.skin-cell {
    position: absolute;
    border-radius: 50%;
    opacity: 0.4;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: float-cells 15s infinite ease-in-out;
    pointer-events: none;
    filter: blur(0.8px);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.skin-cell::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60%;
    height: 60%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    animation: pulse-cell 3s infinite ease-in-out;
}

@keyframes pulse-cell {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.1; }
}

/* Tipos de células com cores diferentes */
.cell-keratinocyte {
    width: 12px;
    height: 12px;
    background: radial-gradient(circle, rgba(255, 229, 160, 0.6) 0%, rgba(255, 229, 160, 0.2) 100%);
    animation-duration: 18s;
    box-shadow: 0 0 20px rgba(255, 229, 160, 0.3);
}

.cell-melanocyte {
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, rgba(139, 90, 60, 0.7) 0%, rgba(139, 90, 60, 0.2) 100%);
    animation-duration: 22s;
    box-shadow: 0 0 15px rgba(139, 90, 60, 0.4);
}

.cell-fibroblast {
    width: 15px;
    height: 15px;
    background: radial-gradient(circle, rgba(238, 189, 158, 0.6) 0%, rgba(238, 189, 158, 0.2) 100%);
    animation-duration: 20s;
    box-shadow: 0 0 25px rgba(238, 189, 158, 0.3);
}

.cell-langerhans {
    width: 10px;
    height: 10px;
    background: radial-gradient(circle, rgba(231, 196, 154, 0.6) 0%, rgba(231, 196, 154, 0.2) 100%);
    animation-duration: 16s;
    box-shadow: 0 0 18px rgba(231, 196, 154, 0.3);
}

.cell-sebocyte {
    width: 14px;
    height: 14px;
    background: radial-gradient(circle, rgba(243, 225, 207, 0.6) 0%, rgba(243, 225, 207, 0.2) 100%);
    animation-duration: 24s;
    box-shadow: 0 0 22px rgba(243, 225, 207, 0.3);
}

/* Animação de flutuação */
@keyframes float-cells {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) translateX(10px) rotate(90deg);
    }
    50% {
        transform: translateY(-10px) translateX(-15px) rotate(180deg);
    }
    75% {
        transform: translateY(-30px) translateX(5px) rotate(270deg);
    }
}

/* Efeito de reação ao mouse */
.skin-cell.mouse-attract {
    transform: scale(1.5) !important;
    opacity: 0.6 !important;
    transition: all 0.3s ease !important;
}

.skin-cell.mouse-repel {
    transform: scale(0.5) !important;
    opacity: 0.1 !important;
    transition: all 0.3s ease !important;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Tons de pele progressivos */
.skin-tone-1 {
    background: linear-gradient(135deg, #fef7f0 0%, #faf2e4 100%);
}

.skin-tone-2 {
    background: linear-gradient(135deg, #f4e6d7 0%, #e8d5c4 100%);
}

.skin-tone-3 {
    background: linear-gradient(135deg, #ddbea9 0%, #cb997e 100%);
}

.skin-tone-4 {
    background-image: url('../images/002.png'),linear-gradient(135deg, #b7896d 0%, #a67c56 100%);
    background-size: cover;
    background-position: right;

}

.skin-tone-5 {
    background: linear-gradient(135deg, #8d6e63 0%, #6d4c41 100%);
}

.skin-tone-6 {
    background: linear-gradient(135deg, #5d4037 0%, #4e342e 100%);
    color: #fff;
}

.skin-tone-7 {
    background: linear-gradient(135deg, #3e2723 0%, #2e1d16 100%);
    color: #fff;
}

/* Container principal */
.landing-container {
    width: 100%;
    position: relative;
    z-index: 1;
}

/* Seção Hero com foto centralizada */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 2rem;
}

.hero-content {
    text-align: center;
    z-index: 2;
}

.doctor-photo-container {
    margin-bottom: 2rem;
    position: relative;
}

.photo-frame {
    position: relative;
    display: inline-block;
    border-radius: 50%;
    padding: 8px;
    background: linear-gradient(45deg, #d4a574, #8b5a3c, #654321);
   
}

@keyframes rotate-border {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Placeholder da foto da doutora */
.doctor-placeholder {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-image: url('../images/inicio.png'), linear-gradient(135deg, #d4a574 0%, #8b5a3c 50%, green 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    border: 4px solid #fff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.doctor-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.placeholder-initials {
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: 0.2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    margin-bottom: 0.5rem;
    z-index: 2;
    position: relative;
}

.placeholder-title {
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    opacity: 0.9;
    z-index: 2;
    position: relative;
}

.doctor-placeholder:hover {
    transform: scale(1.05);
}

.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: radial-gradient(circle at center, transparent 60%, rgba(212, 165, 116, 0.2) 100%);
    pointer-events: none;
}

.hero-text {
    max-width: 600px;
}

.doctor-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, #8b5a3c, #d4a574, #c4905c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.doctor-specialty {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #654321;
}

.doctor-credentials {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    color: #6b4423;
    margin-bottom: 2rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    font-family: 'Poppins', sans-serif;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.btn-primary {
    background: linear-gradient(45deg, #8b5a3c, #d4a574);
    color: #fff;
    box-shadow: 0 8px 25px rgba(139, 90, 60, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(139, 90, 60, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #8b5a3c;
    border: 2px solid #8b5a3c;
}

.btn-secondary:hover {
    background: #8b5a3c;
    color: #fff;
    transform: translateY(-3px);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #8b5a3c;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

.scroll-arrow {
    font-size: 1.5rem;
    margin-top: 0.5rem;
}

/* Seções gerais */
section {
    padding: 5rem 0;
    transition: all 0.3s ease;
}

.section-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #4e342e;
}

.skin-tone-6 h2,
.skin-tone-7 h2 {
    color: #fff;
}

.section-description {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    line-height: 1.8;
    color: #666;
}

.skin-tone-6 .section-description,
.skin-tone-7 .section-description {
    color: #ddd;
}

/* Seção Sobre */
.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 90, 60, 0.2);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #4e342e;
}

/* Seção Serviços */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-template-rows: repeat(auto-fit, minmax(auto, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.8);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 90, 60, 0.2);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    margin: auto;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #4e342e;
}

/* Seção Diversidade de Pele */
.skin-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.skin-type {
    text-align: center;
}

.skin-sample {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    border: 4px solid #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.skin-sample:hover {
    transform: scale(1.1);
}

.tone-1 { background: linear-gradient(45deg, #fef7f0, #faf2e4); }
.tone-2 { background: linear-gradient(45deg, #f4e6d7, #e8d5c4); }
.tone-3 { background: linear-gradient(45deg, #ddbea9, #cb997e); }
.tone-4 { background: linear-gradient(45deg, #b7896d, #a67c56); }
.tone-5 { background: linear-gradient(45deg, #8d6e63, #6d4c41); }
.tone-6 { background: linear-gradient(45deg, #5d4037, #4e342e); }

/* Seção Localização */
.location-content {
    text-align: center;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #fff;
}

.contact-item .icon {
    font-size: 1.5rem;
}

/* Seção Contato */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-method {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    text-decoration: none;
    color: #fff;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.method-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.contact-method h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #fff;
}

.whatsapp:hover { background: rgba(37, 211, 102, 0.2) !important; }
.phone:hover { background: rgba(33, 150, 243, 0.2) !important; }
.email:hover { background: rgba(255, 152, 0, 0.2) !important; }

/* Footer */
.footer {
    padding: 3rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-info h3 {
    color: #fff;
    margin-bottom: 0.5rem;
}

.footer-info p {
    color: #ddd;
    margin-bottom: 0.25rem;
}

.footer-contact {
    text-align: right;
}

.footer-contact p {
    color: #ddd;
    margin-bottom: 0.25rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-section {
        padding: 1rem;
    }
    
    .doctor-name {
        font-size: 2.5rem;
    }
    
    .doctor-placeholder {
        width: 250px;
        height: 250px;
    }
    
    .placeholder-initials {
        font-size: 3rem;
    }
    
    .placeholder-title {
        font-size: 0.9rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .skin-tone-4 {
    background-image: linear-gradient(135deg, #b7896d 0%, #a67c56 100%);
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;

}


    
    .about-features,
    .services-grid,
    .skin-types,
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-contact {
        text-align: center;
    }
    
    section {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .doctor-name {
        font-size: 2rem;
    }
    
    .doctor-placeholder {
        width: 200px;
        height: 200px;
    }
    
    .placeholder-initials {
        font-size: 2.5rem;
    }
    
    .placeholder-title {
        font-size: 0.8rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .feature,
    .service-card,
    .contact-method {
        padding: 1.5rem;
    }
}

/* Menu Flutuante */
.floating-menu {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1001;
    font-family: 'Inter', sans-serif;
}

.floating-menu-toggle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8b5a3c, #d4a574);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(139, 90, 60, 0.4);
    transition: all 0.3s ease;
    color: white;
    border: 3px solid rgba(255, 255, 255, 0.2);
    animation: pulse-menu 2s infinite;
    position: relative;
}

.floating-menu-toggle::before,
.floating-menu-toggle::after {
    content: '';
    position: absolute;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.floating-menu-toggle::before {
    width: 20px;
    height: 3px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.floating-menu-toggle::after {
    width: 3px;
    height: 20px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes pulse-menu {
    0%, 100% { 
        transform: scale(1); 
        box-shadow: 0 8px 25px rgba(139, 90, 60, 0.4); 
    }
    50% { 
        transform: scale(1.05); 
        box-shadow: 0 12px 35px rgba(139, 90, 60, 0.6); 
    }
}

.floating-menu-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(139, 90, 60, 0.6);
}

.floating-menu-content {
    position: absolute;
    bottom: 75px;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(139, 90, 60, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    min-width: 200px;
}

.floating-menu-content.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.floating-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    text-decoration: none;
    color: #333;
    border-radius: 10px;
    transition: all 0.3s ease;
    margin-bottom: 8px;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.floating-menu-item:last-child {
    margin-bottom: 0;
}

.floating-menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.floating-menu-item:hover::before {
    left: 100%;
}

.menu-item-icon {
    font-size: 1.4rem;
    width: 28px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-item-text {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    flex: 1;
    letter-spacing: 0.02em;
}

/* Cores específicas para cada item */
.whatsapp-item {
    color: #34495e;
}

.whatsapp-item:hover {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.1), rgba(37, 211, 102, 0.05));
    color: #25d366;
    transform: translateX(5px);
}

.whatsapp-item .fa-whatsapp {
    color: #25d366;
}

.instagram-item {
    color: #34495e;
}

.instagram-item:hover {
    background: linear-gradient(135deg, rgba(240, 148, 51, 0.1), rgba(188, 24, 136, 0.1));
    color: #e6683c;
    transform: translateX(5px);
}

.instagram-item .fa-instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.schedule-item {
    color: #34495e;
}

.schedule-item:hover {
    background: linear-gradient(135deg, rgba(139, 90, 60, 0.1), rgba(139, 90, 60, 0.05));
    color: #8b5a3c;
    transform: translateX(5px);
}

.schedule-item .fa-calendar-check {
    color: #e74c3c;
}

.phone-item {
    color: #34495e;
}

.phone-item:hover {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.1), rgba(52, 152, 219, 0.05));
    color: #3498db;
    transform: translateX(5px);
}

.phone-item .fa-phone {
    color: #3498db;
}

.services-item {
    color: #34495e;
}

.services-item:hover {
    background: linear-gradient(135deg, rgba(155, 89, 182, 0.1), rgba(155, 89, 182, 0.05));
    color: #9b59b6;
    transform: translateX(5px);
}

/* Estilo para ícones Font Awesome */
.method-icon i {
    font-size: 2.5rem;
    transition: all 0.3s ease;
}

.contact-method.whatsapp .method-icon i {
    color: #25d366;
}

.contact-method.phone .method-icon i {
    color: #3498db;
}

.contact-method.email .method-icon i {
    color: #e74c3c;
}

.contact-method.tiktok {
    background: linear-gradient(135deg, #000000, #333333);
    color: white;
}

.contact-method.tiktok:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.contact-method.tiktok .method-icon i {
    color: white;
}

.contact-item .icon i {
    color: #8b5a3c;
    margin-right: 8px;
    font-size: 1.1rem;
}

h3 i {
    color: #8b5a3c;
    margin-right: 10px;
}

/* Ícones das features */
.feature-icon i {
    font-size: 2.5rem;
    color: #8b5a3c;
    transition: all 0.3s ease;
}

.feature:hover .feature-icon i {
    color: #d4a574;
    transform: scale(1.1);
}

.feature:nth-child(1) .feature-icon i {
    color: #3498db;
}

.feature:nth-child(2) .feature-icon i {
    color: #e74c3c;
}

.feature:nth-child(3) .feature-icon i {
    color: #e91e63;
}

.services-item .fa-stethoscope {
    color: #9b59b6;
}

.tiktok-item {
    color: #34495e;
}

.tiktok-item:hover {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.05));
    color: #000000;
    transform: translateX(5px);
}

.tiktok-item .fa-tiktok {
    color: #000000;
}

.phone-item:hover {
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.1), rgba(33, 150, 243, 0.05));
    color: #2196f3;
    transform: translateX(5px);
}

.services-item:hover {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(76, 175, 80, 0.05));
    color: #4caf50;
    transform: translateX(5px);
}

/* Animação de entrada dos itens */
.floating-menu-content.active .floating-menu-item {
    animation: slideInItem 0.3s ease forwards;
}

.floating-menu-content.active .floating-menu-item:nth-child(1) { animation-delay: 0.1s; }
.floating-menu-content.active .floating-menu-item:nth-child(2) { animation-delay: 0.2s; }
.floating-menu-content.active .floating-menu-item:nth-child(3) { animation-delay: 0.3s; }
.floating-menu-content.active .floating-menu-item:nth-child(4) { animation-delay: 0.4s; }

/* Estilos do Blog */
.blog-container {
    min-height: 100vh;
}

.blog-header {
    padding: 2rem 0;
    text-align: center;
}

.blog-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.btn-back {
    font-family: 'Poppins', sans-serif;
    background: rgba(255, 255, 255, 0.2);
    color: #2c3e50;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.btn-back:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-link.whatsapp {
    background: #25d366;
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-link.email {
    background: #e74c3c;
}

.social-link.tiktok {
    background: #000000;
}

.social-link:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.blog-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.blog-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    color: #6b4423;
    font-weight: 400;
}

.blog-main {
    padding: 3rem 0;
}

.blog-post {
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.blog-post h2 {
    font-family: 'Playfair Display', serif;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.blog-post h2 i {
    color: #8b5a3c;
    margin-right: 0.5rem;
}

.blog-post p {
    font-family: 'Poppins', sans-serif;
    line-height: 1.8;
    color: #34495e;
    font-size: 1.1rem;
}

/* Responsivo para Blog */
@media (max-width: 768px) {
    .blog-nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    .blog-title {
        font-size: 2.5rem;
    }
    
    .blog-post {
        padding: 1.5rem;
    }
    
    .blog-post h2 {
        font-size: 1.5rem;
    }
}

/* Estilos do Quiz */
.quiz-container {
    min-height: 100vh;
}

.quiz-header {
    padding: 2rem 0;
    text-align: center;
}

.quiz-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.quiz-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.quiz-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    color: #6b4423;
    font-weight: 400;
}

.quiz-main {
    padding: 3rem 0;
    
}

.quiz-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 3rem 0;
}

.quiz-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.quiz-icon {
    font-size: 4rem;
    color: #8b5a3c;
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
}

.quiz-intro h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.quiz-intro p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    color: #34495e;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.quiz-progress {
    margin-bottom: 3rem;
    text-align: center;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(45deg, #8b5a3c, #d4a574);
    width: 0%;
    transition: width 0.5s ease;
    border-radius: 10px;
}

#question-counter {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #2c3e50;
    font-size: 1.1rem;
}

.question-card {
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.question-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 2.5rem;
}

.question-card h3 i {
    color: #8b5a3c;
    margin-right: 0.5rem;
}

.answers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.answer-btn {
    font-family: 'Poppins', sans-serif;
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid transparent;
    border-radius: 15px;
    padding: 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: #2c3e50;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.answer-btn:hover {
    background: rgba(139, 90, 60, 0.1);
    border-color: #8b5a3c;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.answer-btn.selected {
    background: linear-gradient(45deg, #8b5a3c, #d4a574);
    color: white;
    border-color: #8b5a3c;
    transform: scale(1.02);
}

.answer-btn:disabled {
    cursor: not-allowed;
    opacity: 0.7;
}

.result-container {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.result-icon {
    font-size: 4rem;
    color: #8b5a3c;
    margin-bottom: 2rem;
    animation: bounce 1s ease;
}

.result-container h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.result-score {
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.result-score-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.result-score h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.score-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    color: #6b4423;
    font-weight: 600;
}

.result-description {
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: left;
}

.result-description p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: #34495e;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.dra-message {
    background: rgba(139, 90, 60, 0.1);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    text-align: left;
}

.dra-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #8b5a3c, #d4a574);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.message-content h4 {
    font-family: 'Playfair Display', serif;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.message-content p {
    font-family: 'Poppins', sans-serif;
    color: #34495e;
    font-style: italic;
    line-height: 1.6;
}

.result-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Animações */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Responsivo para Quiz */
@media (max-width: 768px) {
    .quiz-nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    .quiz-title {
        font-size: 2.5rem;
    }
    
    .quiz-intro h2 {
        font-size: 2rem;
    }
    
    .question-card {
        padding: 2rem;
    }
    
    .question-card h3 {
        font-size: 1.5rem;
    }
    
    .answers-grid {
        grid-template-columns: 1fr;
    }
    
    .answer-btn {
        padding: 1rem;
    }
    
    .dra-message {
        flex-direction: column;
        text-align: center;
    }
    
    .result-actions {
        flex-direction: column;
        align-items: center;
    }
}

/* Estilos da Pré-Consulta */
.preconsulta-container {
    min-height: 100vh;
    width: 100%;
    overflow-x: hidden;
    position: relative;
}

.preconsulta-header {
    padding: 2rem 0;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.preconsulta-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    width: 100%;
    box-sizing: border-box;
    flex-wrap: wrap;
}

.preconsulta-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.preconsulta-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    color: #6b4423;
    font-weight: 400;
}

.chatbot-main {
    padding: 3rem 0;
    min-height: 70vh;
}

.chatbot-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    width: 100%;
    box-sizing: border-box;
}

.chat-messages {
    max-height: 500px;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    box-sizing: border-box;
}

.message {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    animation: messageSlideIn 0.5s ease;
    width: 100%;
    box-sizing: border-box;
}

.message.user-message {
    flex-direction: row-reverse;
}

.message-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
    min-width: 45px;
}

.bot-message .message-avatar {
    background: linear-gradient(45deg, #8b5a3c, #d4a574);
}

.user-message .message-avatar {
    background: linear-gradient(45deg, #3498db, #2ecc71);
}

.message-content {
    background: rgba(255, 255, 255, 0.9);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    max-width: 70%;
    word-wrap: break-word;
    word-break: break-word;
    -webkit-hyphens: auto;
    hyphens: auto;
    overflow-wrap: break-word;
    box-sizing: border-box;
}

.user-message .message-content {
    background: linear-gradient(45deg, #8b5a3c, #d4a574);
    color: white;
}

.message-content p {
    margin: 0;
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
}

.chat-input-area {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.input-container {
    display: flex;
    gap: 1rem;
    align-items: flex-end;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.chat-input,
.chat-textarea {
    flex: 1;
    padding: 1rem;
    border: 2px solid rgba(139, 90, 60, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.9);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    resize: vertical;
    transition: border-color 0.3s ease;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

.chat-input:focus,
.chat-textarea:focus {
    outline: none;
    border-color: #8b5a3c;
}

.options-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    width: 100%;
    box-sizing: border-box;
}

.option-btn {
    font-family: 'Poppins', sans-serif;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(139, 90, 60, 0.3);
    border-radius: 10px;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.option-btn:hover {
    background: rgba(139, 90, 60, 0.1);
    border-color: #8b5a3c;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 90, 60, 0.2);
}

.option-btn:active {
    transform: translateY(0px);
    background: rgba(139, 90, 60, 0.2);
}

.option-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.option-btn:hover::before {
    left: 100%;
}

.progress-section {
    padding: 1rem 0;
    text-align: center;
}

.progress-container {
    max-width: 800px;
    margin: 0 auto;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(45deg, #8b5a3c, #d4a574);
    width: 0%;
    transition: width 0.5s ease;
    border-radius: 10px;
}

.progress-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #2c3e50;
    font-size: 1.1rem;
}

.result-section {
    padding: 3rem 0;
    text-align: center;
}

.result-container {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 3rem;
}

.result-icon {
    font-size: 4rem;
    color: #27ae60;
    margin-bottom: 2rem;
    animation: bounce 1s ease;
}

.result-container h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.result-container p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    color: #34495e;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.result-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Animações */
@keyframes messageSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Estilos modernos para formulário de dados pessoais no Quiz */
.personal-form {
    max-width: 750px;
    margin: 0 auto;
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.98), 
        rgba(248, 250, 252, 0.95), 
        rgba(240, 245, 250, 0.98));
    padding: 3.5rem 3rem;
    border-radius: 30px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.12), 
        0 12px 35px rgba(139, 90, 60, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    position: relative;
    overflow: hidden;
    animation: formAppear 0.8s ease-out forwards;
    transform: translateY(30px);
    opacity: 0;
}

@keyframes formAppear {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.personal-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, 
        #d4a574 0%, 
        #8b5a3c 25%, 
        #d4a574 50%, 
        #8b5a3c 75%, 
        #d4a574 100%);
    background-size: 400% 100%;
    animation: gradientShift 4s ease-in-out infinite;
}

.personal-form::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, 
        rgba(212, 165, 116, 0.03) 0%, 
        transparent 70%);
    pointer-events: none;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    25% { background-position: 50% 50%; }
    50% { background-position: 100% 50%; }
    75% { background-position: 150% 50%; }
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.form-row.two-columns {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.form-group {
    position: relative;
    display: flex;
    flex-direction: column;
    animation: slideInUp 0.8s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

.form-group:nth-child(1) { animation-delay: 0.2s; }
.form-group:nth-child(2) { animation-delay: 0.3s; }
.form-group:nth-child(3) { animation-delay: 0.4s; }
.form-group:nth-child(4) { animation-delay: 0.5s; }

.form-group label {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.form-group label i {
    font-size: 1.1rem;
    color: #8b5a3c;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: 0 2px 4px rgba(139, 90, 60, 0.1);
}

.form-group label i {
    color: #8b5a3c;
    width: 18px;
    text-align: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.form-input {
    font-family: 'Inter', sans-serif;
    padding: 1.4rem 1.8rem;
    border: 2px solid rgba(139, 90, 60, 0.15);
    border-radius: 18px;
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.95), 
        rgba(248, 250, 252, 0.9));
    font-size: 1.05rem;
    font-weight: 400;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
    position: relative;
    z-index: 1;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.form-input::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 18px;
    padding: 2px;
    background: linear-gradient(135deg, 
        rgba(212, 165, 116, 0.3), 
        rgba(139, 90, 60, 0.2), 
        rgba(212, 165, 116, 0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.form-input:hover {
    border-color: rgba(139, 90, 60, 0.35);
    box-shadow: 
        0 12px 35px rgba(139, 90, 60, 0.12),
        0 6px 20px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transform: translateY(-3px) scale(1.02);
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 1), 
        rgba(248, 250, 252, 0.95));
}

.form-input:hover::before {
    opacity: 1;
}

.form-input:focus {
    border-color: #8b5a3c;
    box-shadow: 
        0 0 0 5px rgba(139, 90, 60, 0.12),
        0 15px 40px rgba(139, 90, 60, 0.2),
        0 8px 25px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    transform: translateY(-4px) scale(1.03);
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 1), 
        rgba(248, 250, 252, 1));
}

.form-input:focus::before {
    opacity: 1;
}

.form-input:focus + .form-group label {
    color: #8b5a3c;
    transform: translateY(-2px);
}

.form-input:focus + .form-group label i {
    color: #d4a574;
    transform: scale(1.15) rotate(5deg);
    text-shadow: 0 3px 8px rgba(212, 165, 116, 0.3);
}

.form-input::placeholder {
    color: #a0a8b0;
    font-style: italic;
    font-weight: 300;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.form-input:focus::placeholder {
    opacity: 0.5;
    transform: translateX(5px);
}

/* Efecto especial para inputs válidos */
.form-input:valid:not(:placeholder-shown) {
    border-color: #10b981;
    background: linear-gradient(145deg, 
        rgba(236, 253, 245, 0.9), 
        rgba(255, 255, 255, 0.95));
    box-shadow: 
        0 8px 25px rgba(16, 185, 129, 0.15),
        0 4px 15px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.form-input:valid:not(:placeholder-shown) + .form-group label i {
    color: #10b981;
    animation: successPulse 0.6s ease-in-out;
}

@keyframes successPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Efecto especial para select */
.form-input[type="tel"],
.form-input[type="email"] {
    background-image: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.98), 
        rgba(240, 245, 250, 0.95));
}

select.form-input {
    background-image: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.98), 
        rgba(240, 245, 250, 0.95)),
        url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%238b5a3c' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 1.2rem center, 0 0;
    background-repeat: no-repeat, repeat;
    background-size: 1.2em 1.2em, 100%;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

select.form-input:hover {
    background-image: linear-gradient(145deg, 
        rgba(255, 255, 255, 1), 
        rgba(240, 245, 250, 0.98)),
        url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23d4a574' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
}

/* Animação de entrada para os form groups */
.form-group {
    animation: slideInUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

.form-group:nth-child(1) { animation-delay: 0.1s; }
.form-group:nth-child(2) { animation-delay: 0.2s; }
.form-group:nth-child(3) { animation-delay: 0.3s; }
.form-group:nth-child(4) { animation-delay: 0.4s; }

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(139, 90, 60, 0.1);
}

.form-actions .btn {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    padding: 1rem 2.5rem;
    border-radius: 25px;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    min-width: 160px;
    justify-content: center;
}

.form-actions .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.form-actions .btn:hover::before {
    left: 100%;
}

.form-actions .btn-primary {
    background: linear-gradient(135deg, #8b5a3c, #d4a574);
    color: white;
    box-shadow: 0 8px 25px rgba(139, 90, 60, 0.3);
}

.form-actions .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(139, 90, 60, 0.4);
    background: linear-gradient(135deg, #7a4d33, #c49660);
}

.form-actions .btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(139, 90, 60, 0.4);
}

.form-actions .btn-secondary {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    color: #6c757d;
    border: 2px solid rgba(139, 90, 60, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.form-actions .btn-secondary:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #e9ecef, #dee2e6);
    border-color: rgba(139, 90, 60, 0.4);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    color: #495057;
}

.form-actions .btn i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.form-actions .btn:hover i {
    transform: scale(1.1);
}

.form-note {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(139, 90, 60, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(139, 90, 60, 0.1);
}

.form-note p {
    color: #6b4423;
    font-style: italic;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.6;
}

.form-note small {
    display: block;
    margin-top: 0.5rem;
    color: #8b5a3c;
    font-weight: 500;
}

/* Responsivo para formulário de dados pessoais */
@media (max-width: 768px) {
    .personal-form {
        margin: 0 1rem;
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }
    
    .form-row.two-columns {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
    }
    
    .form-input {
        padding: 1rem 1.2rem;
        font-size: 16px; /* Evita zoom no iOS */
        border-radius: 12px;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 1rem;
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
    
    .form-actions .btn {
        padding: 1rem 2rem;
        width: 100%;
        border-radius: 15px;
    }
    
    .form-note {
        margin-top: 1.5rem;
        padding: 1rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .personal-form {
        margin: 0 0.5rem;
        padding: 1.5rem 1rem;
    }
    
    .form-group label {
        font-size: 0.85rem;
    }
    
    .form-input {
        padding: 0.9rem 1rem;
        font-size: 16px;
    }
    
    .form-actions .btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Estilos para resultado personalizado */
.result-header {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(139, 90, 60, 0.1), rgba(212, 165, 116, 0.1));
    border-radius: 10px;
    border: 2px solid rgba(139, 90, 60, 0.2);
}

.result-header h3 {
    font-family: 'Playfair Display', serif;
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.welcome-text {
    font-family: 'Poppins', sans-serif;
    color: #6b4423;
    font-size: 1.1rem;
    margin: 0;
}

/* Responsivo para formulário */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 1rem;
    }
    
    .personal-form {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .form-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .form-actions .btn {
        width: 100%;
        max-width: 200px;
    }
}

/* Responsivo para Pré-Consulta */
@media (max-width: 768px) {
    .preconsulta-nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    .preconsulta-title {
        font-size: 2.5rem;
    }
    
    .chatbot-container {
        margin: 0 1rem;
    }
    
    .chat-messages {
        padding: 1.5rem;
    }
    
    .message-content {
        max-width: 85%;
    }
    
    .chat-input-area {
        padding: 1rem;
    }
    
    .input-container {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .chat-input,
    .chat-textarea {
        padding: 0.8rem;
        font-size: 16px; /* Evita zoom no iOS */
    }
    
    .options-container {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .option-btn {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .result-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .result-container {
        margin: 0 1rem;
        padding: 2rem;
    }
}

/* Media query específica para Samsung Galaxy e dispositivos similares */
@media (max-width: 480px) {
    .chatbot-container {
        margin: 0 0.5rem;
        border-radius: 15px;
    }
    
    .chat-input-area {
        padding: 0.8rem;
    }
    
    .input-container {
        gap: 0.5rem;
    }
    
    .chat-input,
    .chat-textarea {
        padding: 0.7rem;
        border-radius: 8px;
        font-size: 16px;
    }
    
    .options-container {
        gap: 0.5rem;
    }
    
    .option-btn {
        padding: 0.7rem;
        border-radius: 8px;
        font-size: 0.85rem;
    }
    
    .btn-primary {
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
    }
    
    .message-content {
        max-width: 90%;
        padding: 0.8rem 1rem;
    }
    
    .chat-messages {
        padding: 1rem;
        max-height: 400px;
    }
}

/* Media query para dispositivos muito pequenos */
@media (max-width: 360px) {
    .preconsulta-title {
        font-size: 2rem;
    }
    
    .chatbot-container {
        margin: 0 0.25rem;
    }
    
    .chat-input-area {
        padding: 0.6rem;
    }
    
    .chat-input,
    .chat-textarea {
        padding: 0.6rem;
        font-size: 15px;
    }
    
    .option-btn {
        padding: 0.6rem;
        font-size: 0.8rem;
    }
    
    .message-content {
        padding: 0.7rem 0.8rem;
        font-size: 0.9rem;
    }
}

@keyframes slideInItem {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsividade do menu flutuante */
@media (max-width: 768px) {
    .floating-menu {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-menu-toggle {
        width: 55px;
        height: 55px;
    }
    
    .floating-menu-content {
        right: -10px;
        min-width: 180px;
        padding: 12px;
    }
    
    .floating-menu-item {
        padding: 10px 12px;
        margin-bottom: 6px;
    }
    
    .menu-item-icon {
        font-size: 1.2rem;
        width: 22px;
    }
    
    .menu-item-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .floating-menu {
        bottom: 15px;
        right: 15px;
    }
    
    .floating-menu-toggle {
        width: 50px;
        height: 50px;
    }
    
    .floating-menu-content {
        right: -20px;
        min-width: 160px;
    }
}


#f1, #f2, #f3, #f4, #f5, #f6, #f7, #f8  {
   
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 80px;
    height: 80px;
    display: flex;
    border-radius: 10px;

}

#f1 {
     background-image: url(../images/acne.png), linear-gradient(135deg, #fef7f0 0%, #faf2e4 100%);
}

#f2 {
     background-image: url(../images/calvicie.png), linear-gradient(135deg, #fef7f0 0%, #faf2e4 100%);
}

#f3 {
     background-image: url(../images/biopsia.png), linear-gradient(135deg, #fef7f0 0%, #faf2e4 100%);
}

#f4 {
     background-image: url(../images/lipoma.png), linear-gradient(135deg, #fef7f0 0%, #faf2e4 100%);
}

#f5 {
     background-image: url(../images/cancer.png), linear-gradient(135deg, #fef7f0 0%, #faf2e4 100%);
}

#f6 {
     background-image: url(../images/verruga.png), linear-gradient(135deg, #fef7f0 0%, #faf2e4 100%);
}

#f7 {
     background-image: url(../images/sinais.png), linear-gradient(135deg, #fef7f0 0%, #faf2e4 100%);
}
#f8 {
     background-image: url(../images/dermatitis.png), linear-gradient(135deg, #fef7f0 0%, #faf2e4 100%);
}

#quiz-start {
    background-image: url('../images/004.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
}

/* === MEJORAS ADICIONALES PARA FORMULARIO === */

/* Indicador de progreso de formulario */
.form-progress {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(139, 90, 60, 0.1);
    margin-bottom: 2rem;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(139, 90, 60, 0.1);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #8b5a3c, #d4a574);
    border-radius: 2px;
    width: 0%;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: progressShimmer 2s infinite;
}

@keyframes progressShimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Efectos de validación en tiempo real */
.form-input.valid {
    border-color: #28a745;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.9) 0%, 
        rgba(40, 167, 69, 0.02) 100%);
}

.form-input.invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.9) 0%, 
        rgba(220, 53, 69, 0.02) 100%);
    animation: shakeError 0.5s ease;
}

@keyframes shakeError {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.validation-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 10;
}

.form-input.valid ~ .validation-icon.valid {
    opacity: 1;
    color: #28a745;
    animation: validBounce 0.5s ease;
}

.form-input.invalid ~ .validation-icon.invalid {
    opacity: 1;
    color: #dc3545;
    animation: invalidShake 0.5s ease;
}

@keyframes validBounce {
    0%, 100% { transform: translateY(-50%) scale(1); }
    50% { transform: translateY(-50%) scale(1.2); }
}

@keyframes invalidShake {
    0%, 100% { transform: translateY(-50%) translateX(0); }
    25% { transform: translateY(-50%) translateX(-3px); }
    75% { transform: translateY(-50%) translateX(3px); }
}

/* Efecto de escritura para labels */
.form-group label {
    opacity: 0;
    animation: labelAppear 0.6s ease forwards;
}

.form-group:nth-child(1) label { animation-delay: 0.1s; }
.form-group:nth-child(2) label { animation-delay: 0.2s; }
.form-group:nth-child(3) label { animation-delay: 0.3s; }
.form-group:nth-child(4) label { animation-delay: 0.4s; }

@keyframes labelAppear {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mejora de botones con estados de carga */
.btn.loading {
    position: relative;
    color: transparent;
    pointer-events: none;
}

.btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: buttonSpinner 0.8s linear infinite;
}

@keyframes buttonSpinner {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Efecto hover mejorado para inputs */
.form-input:hover:not(:focus) {
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(139, 90, 60, 0.15);
}

/* Indicador de campo requerido */
.form-group label[for*="required"]::after,
.form-group label:has(+ input[required])::after {
    content: ' *';
    color: #dc3545;
    font-weight: bold;
    animation: requiredPulse 2s infinite;
}

@keyframes requiredPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}