/* Dentista Starter - Frontend Styles */
/* Design Moderno, Minimalista e Alta Conversão */

:root {
    --dentista-primary: #0d9488;
    --dentista-secondary: #134e4a;
    --dentista-accent: #f0fdfa;
    --dentista-white: #ffffff;
    --dentista-gray-50: #f9fafb;
    --dentista-gray-100: #f3f4f6;
    --dentista-gray-200: #e5e7eb;
    --dentista-gray-300: #d1d5db;
    --dentista-gray-400: #9ca3af;
    --dentista-gray-500: #6b7280;
    --dentista-gray-600: #4b5563;
    --dentista-gray-700: #374151;
    --dentista-gray-800: #1f2937;
    --dentista-gray-900: #111827;
    --dentista-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --dentista-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --dentista-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Reset e Base */
.dentista-site * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.dentista-site {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    color: var(--dentista-gray-800);
    line-height: 1.6;
    overflow-x: hidden;
}

.dentista-site img {
    max-width: 100%;
    height: auto;
}

.dentista-site a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Container */
.dentista-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header / Navbar */
.dentista-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--dentista-gray-100);
    transition: all 0.3s ease;
}

.dentista-header.scrolled {
    box-shadow: var(--dentista-shadow);
}

.dentista-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.dentista-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.dentista-logo-icon {
    width: 40px;
    height: 40px;
    color: var(--dentista-primary);
}

.dentista-logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dentista-gray-900);
}

.dentista-logo-text span {
    color: var(--dentista-primary);
}

.dentista-nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.dentista-nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--dentista-gray-600);
    transition: color 0.3s ease;
}

.dentista-nav-link:hover {
    color: var(--dentista-primary);
}

.dentista-nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--dentista-primary);
    color: var(--dentista-white) !important;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.dentista-nav-cta:hover {
    background: var(--dentista-secondary);
    transform: translateY(-2px);
    box-shadow: var(--dentista-shadow-lg);
}

.dentista-nav-cta svg {
    width: 18px;
    height: 18px;
}

.dentista-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.dentista-mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dentista-gray-700);
    transition: all 0.3s ease;
}

/* Hero Section */
.dentista-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--dentista-accent) 0%, var(--dentista-white) 100%);
    position: relative;
    overflow: hidden;
}

.dentista-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    height: 200%;
    background: radial-gradient(circle, var(--dentista-accent) 0%, transparent 70%);
    opacity: 0.5;
    z-index: 0;
}

.dentista-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.dentista-hero-text {
    max-width: 560px;
}

.dentista-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--dentista-white);
    border: 1px solid var(--dentista-gray-200);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--dentista-primary);
    margin-bottom: 24px;
}

.dentista-hero-badge svg {
    width: 16px;
    height: 16px;
}

.dentista-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--dentista-gray-900);
    margin-bottom: 24px;
}

.dentista-hero h1 span {
    color: var(--dentista-primary);
}

.dentista-hero-subtitle {
    font-size: 1.25rem;
    color: var(--dentista-gray-600);
    margin-bottom: 40px;
    line-height: 1.7;
}

.dentista-hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.dentista-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--dentista-primary);
    color: var(--dentista-white);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.dentista-btn-primary:hover {
    background: var(--dentista-secondary);
    transform: translateY(-3px);
    box-shadow: var(--dentista-shadow-xl);
    color: var(--dentista-white);
}

.dentista-btn-primary svg {
    width: 20px;
    height: 20px;
}

.dentista-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--dentista-white);
    color: var(--dentista-gray-700);
    border: 2px solid var(--dentista-gray-200);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.dentista-btn-secondary:hover {
    border-color: var(--dentista-primary);
    color: var(--dentista-primary);
    transform: translateY(-3px);
}

.dentista-btn-secondary svg {
    width: 20px;
    height: 20px;
}

.dentista-hero-image {
    position: relative;
}

.dentista-hero-img-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--dentista-shadow-xl);
}

.dentista-hero-img-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.dentista-hero-img-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, var(--dentista-gray-100) 0%, var(--dentista-gray-200) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.dentista-hero-img-placeholder svg {
    width: 120px;
    height: 120px;
    color: var(--dentista-gray-300);
}

.dentista-hero-float-card {
    position: absolute;
    bottom: -20px;
    left: -30px;
    background: var(--dentista-white);
    padding: 20px 24px;
    border-radius: 16px;
    box-shadow: var(--dentista-shadow-lg);
    display: flex;
    align-items: center;
    gap: 16px;
}

.dentista-hero-float-icon {
    width: 50px;
    height: 50px;
    background: var(--dentista-accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dentista-hero-float-icon svg {
    width: 24px;
    height: 24px;
    color: var(--dentista-primary);
}

.dentista-hero-float-text h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dentista-gray-900);
}

.dentista-hero-float-text p {
    font-size: 0.875rem;
    color: var(--dentista-gray-500);
}

/* Sobre Section */
.dentista-sobre {
    padding: 100px 0;
    background: var(--dentista-white);
}

.dentista-sobre-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.dentista-sobre-image {
    position: relative;
}

.dentista-sobre-img-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.dentista-sobre-img-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    background: var(--dentista-accent);
    border-radius: 24px;
    z-index: -1;
}

.dentista-sobre-img-wrapper img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 24px;
    display: block;
}

.dentista-sobre-img-placeholder {
    width: 100%;
    height: 450px;
    background: linear-gradient(135deg, var(--dentista-gray-100) 0%, var(--dentista-gray-200) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
}

.dentista-sobre-img-placeholder svg {
    width: 100px;
    height: 100px;
    color: var(--dentista-gray-300);
}

.dentista-sobre-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dentista-gray-900);
    margin-bottom: 24px;
    line-height: 1.2;
}

.dentista-sobre-text h2 span {
    color: var(--dentista-primary);
}

.dentista-sobre-text p {
    font-size: 1.1rem;
    color: var(--dentista-gray-600);
    line-height: 1.8;
    margin-bottom: 32px;
}

.dentista-sobre-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.dentista-sobre-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.dentista-sobre-feature svg {
    width: 24px;
    height: 24px;
    color: var(--dentista-primary);
    flex-shrink: 0;
}

.dentista-sobre-feature span {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--dentista-gray-700);
}

/* Serviços Section */
.dentista-servicos {
    padding: 100px 0;
    background: var(--dentista-gray-50);
}

.dentista-section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.dentista-section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dentista-gray-900);
    margin-bottom: 16px;
}

.dentista-section-header h2 span {
    color: var(--dentista-primary);
}

.dentista-section-header p {
    font-size: 1.1rem;
    color: var(--dentista-gray-600);
}

.dentista-servicos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.dentista-servico-card {
    background: var(--dentista-white);
    padding: 32px;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid var(--dentista-gray-100);
}

.dentista-servico-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--dentista-shadow-xl);
    border-color: transparent;
}

.dentista-servico-icon {
    width: 60px;
    height: 60px;
    background: var(--dentista-accent);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.dentista-servico-card:hover .dentista-servico-icon {
    background: var(--dentista-primary);
}

.dentista-servico-icon svg {
    width: 28px;
    height: 28px;
    color: var(--dentista-primary);
    transition: all 0.3s ease;
}

.dentista-servico-card:hover .dentista-servico-icon svg {
    color: var(--dentista-white);
}

.dentista-servico-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dentista-gray-900);
    margin-bottom: 12px;
}

.dentista-servico-card p {
    font-size: 0.95rem;
    color: var(--dentista-gray-600);
    line-height: 1.6;
}

/* CTA Section */
.dentista-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dentista-primary) 0%, var(--dentista-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.dentista-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.dentista-cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.dentista-cta h2 {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--dentista-white);
    margin-bottom: 20px;
}

.dentista-cta p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.dentista-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.dentista-btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: #25D366;
    color: var(--dentista-white);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.dentista-btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    color: var(--dentista-white);
}

.dentista-btn-whatsapp svg {
    width: 24px;
    height: 24px;
}

.dentista-btn-phone {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: transparent;
    color: var(--dentista-white);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.dentista-btn-phone:hover {
    background: var(--dentista-white);
    color: var(--dentista-primary);
    border-color: var(--dentista-white);
    transform: translateY(-3px);
}

.dentista-btn-phone svg {
    width: 24px;
    height: 24px;
}

/* Contato Section */
.dentista-contato {
    padding: 100px 0;
    background: var(--dentista-white);
}

.dentista-contato-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.dentista-contato-info h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dentista-gray-900);
    margin-bottom: 16px;
}

.dentista-contato-info h2 span {
    color: var(--dentista-primary);
}

.dentista-contato-info > p {
    font-size: 1.1rem;
    color: var(--dentista-gray-600);
    margin-bottom: 40px;
}

.dentista-contato-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.dentista-contato-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.dentista-contato-item-icon {
    width: 50px;
    height: 50px;
    background: var(--dentista-accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dentista-contato-item-icon svg {
    width: 24px;
    height: 24px;
    color: var(--dentista-primary);
}

.dentista-contato-item-text h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dentista-gray-900);
    margin-bottom: 4px;
}

.dentista-contato-item-text p {
    font-size: 0.95rem;
    color: var(--dentista-gray-600);
}

.dentista-contato-item-text a {
    color: var(--dentista-primary);
    font-weight: 500;
}

.dentista-contato-item-text a:hover {
    color: var(--dentista-secondary);
}

.dentista-contato-social {
    display: flex;
    gap: 12px;
    margin-top: 32px;
}

.dentista-social-link {
    width: 44px;
    height: 44px;
    background: var(--dentista-gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.dentista-social-link:hover {
    background: var(--dentista-primary);
}

.dentista-social-link svg {
    width: 20px;
    height: 20px;
    color: var(--dentista-gray-600);
    transition: all 0.3s ease;
}

.dentista-social-link:hover svg {
    color: var(--dentista-white);
}

.dentista-contato-map {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--dentista-shadow-lg);
}

.dentista-contato-map iframe {
    width: 100%;
    height: 400px;
    border: none;
}

.dentista-map-placeholder {
    width: 100%;
    height: 400px;
    background: var(--dentista-gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
}

.dentista-map-placeholder svg {
    width: 60px;
    height: 60px;
    color: var(--dentista-gray-400);
}

.dentista-map-placeholder p {
    color: var(--dentista-gray-500);
    font-size: 0.95rem;
}

/* Footer */
.dentista-footer {
    background: var(--dentista-gray-900);
    padding: 60px 0 30px;
}

.dentista-footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.dentista-footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dentista-white);
    margin-bottom: 16px;
}

.dentista-footer-brand h3 span {
    color: var(--dentista-primary);
}

.dentista-footer-brand p {
    color: var(--dentista-gray-400);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.dentista-footer-social {
    display: flex;
    gap: 12px;
}

.dentista-footer-social .dentista-social-link {
    background: var(--dentista-gray-800);
}

.dentista-footer-social .dentista-social-link svg {
    color: var(--dentista-gray-400);
}

.dentista-footer-col h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dentista-white);
    margin-bottom: 20px;
}

.dentista-footer-col ul {
    list-style: none;
}

.dentista-footer-col li {
    margin-bottom: 12px;
}

.dentista-footer-col a {
    color: var(--dentista-gray-400);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.dentista-footer-col a:hover {
    color: var(--dentista-primary);
}

.dentista-footer-bottom {
    border-top: 1px solid var(--dentista-gray-800);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dentista-footer-bottom p {
    color: var(--dentista-gray-500);
    font-size: 0.875rem;
}

/* WhatsApp Float Button */
.dentista-whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.dentista-whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

.dentista-whatsapp-float a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.dentista-whatsapp-float svg {
    width: 32px;
    height: 32px;
    color: var(--dentista-white);
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dentista-animate {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.dentista-delay-1 { animation-delay: 0.1s; }
.dentista-delay-2 { animation-delay: 0.2s; }
.dentista-delay-3 { animation-delay: 0.3s; }
.dentista-delay-4 { animation-delay: 0.4s; }

/* Responsivo */
@media (max-width: 1024px) {
    .dentista-servicos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .dentista-hero-content,
    .dentista-sobre-content,
    .dentista-contato-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .dentista-hero {
        padding: 120px 0 60px;
    }
    
    .dentista-hero h1 {
        font-size: 2.75rem;
    }
    
    .dentista-hero-image {
        order: -1;
    }
    
    .dentista-sobre-image {
        order: -1;
    }
    
    .dentista-footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .dentista-site .dentista-nav-menu {
        display: none !important;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--dentista-white);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        box-shadow: var(--dentista-shadow-lg);
        z-index: 1000;
    }
    
    .dentista-site .dentista-nav-menu.active {
        display: flex !important;
    }
    
    .dentista-site .dentista-mobile-toggle {
        display: flex !important;
    }
    
    .dentista-hero h1 {
        font-size: 2.25rem;
    }
    
    .dentista-section-header h2,
    .dentista-sobre-text h2,
    .dentista-contato-info h2 {
        font-size: 2rem;
    }
    
    .dentista-cta h2 {
        font-size: 2rem;
    }
    
    .dentista-servicos-grid {
        grid-template-columns: 1fr;
    }
    
    .dentista-hero-buttons,
    .dentista-cta-buttons {
        flex-direction: column;
    }
    
    .dentista-btn-primary,
    .dentista-btn-secondary,
    .dentista-btn-whatsapp,
    .dentista-btn-phone {
        width: 100%;
        justify-content: center;
    }
    
    .dentista-footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .dentista-footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .dentista-hero-float-card {
        display: none;
    }
    
    .dentista-sobre-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .dentista-container {
        padding: 0 16px;
    }
    
    .dentista-hero h1 {
        font-size: 1.875rem;
    }
    
    .dentista-hero-subtitle {
        font-size: 1rem;
    }
    
    .dentista-servico-card {
        padding: 24px;
    }
    
    .dentista-whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .dentista-whatsapp-float a {
        width: 55px;
        height: 55px;
    }
}
