/*
Theme Name: Dr. Rodrigo Retina
Description: Tema WordPress profissional para Dr. Rodrigo Magno - Especialista em Cirurgia de Retina com 4 botões de navegação, seção de patologias com OCT, depoimentos verificados, mapa do Google e design elegante
Author: Manus AI
Version: 6.1
License: GPL v2 or later
Tags: medical, doctor, retina, surgery, ophthalmology, responsive, modern, oct, testimonials, maps
*/

/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    overflow-x: hidden;
    background: #0f0f0f;
}

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

/* Header */
.header {
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand h2 {
    background: linear-gradient(135deg, #e5e7eb, #f9fafb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.5rem;
    font-weight: 600;
}

.nav-brand span {
    color: #9ca3af;
    font-size: 0.9rem;
}

.nav-contact {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.phone-link {
    color: #d1d5db;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.phone-link:hover {
    color: #f9fafb;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

/* Hero Section with Video Background */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #0f0f0f;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15,15,15,0.8) 0%, rgba(31,41,55,0.6) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 20px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #f9fafb, #e5e7eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight {
    background: linear-gradient(135deg, #d1d5db, #f3f4f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #9ca3af;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero-description {
    font-size: 1.1rem;
    color: #d1d5db;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn-primary {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #d1d5db;
    padding: 1rem 2rem;
    border: 2px solid rgba(209, 213, 219, 0.3);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(209, 213, 219, 0.1);
    border-color: #d1d5db;
    color: #f9fafb;
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #d1d5db, #f3f4f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    color: #9ca3af;
}

.hero-image {
    text-align: center;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
}

/* Sobre Section */
.sobre {
    padding: 80px 0;
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.sobre-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
}

.sobre-text h2 {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #f9fafb, #e5e7eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.credentials {
    background: linear-gradient(135deg, #d1d5db, #f3f4f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.sobre-text p {
    font-size: 1.1rem;
    color: #d1d5db;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.qualificacoes {
    background: rgba(31, 41, 55, 0.5);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    border: 1px solid rgba(255,255,255,0.1);
}

.qualificacoes h3 {
    color: #f9fafb;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.qualificacoes ul {
    list-style: none;
}

.qualificacoes li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #d1d5db;
}

.qualificacoes i {
    color: #10b981;
    width: 20px;
}

/* Procedimentos Section */
.procedimentos {
    padding: 80px 0;
    background: #0f0f0f;
}

.procedimentos h2 {
    text-align: center;
    font-size: 2.5rem;
    background: linear-gradient(135deg, #f9fafb, #e5e7eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #9ca3af;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.procedimento-card {
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.8), rgba(17, 24, 39, 0.8));
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.procedimento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    border-color: rgba(16, 185, 129, 0.3);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.card-icon i {
    font-size: 2rem;
    color: white;
}

.procedimento-card h3 {
    font-size: 1.5rem;
    color: #f9fafb;
    margin-bottom: 1rem;
}

.procedimento-card p {
    color: #d1d5db;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.procedimento-card ul {
    list-style: none;
    text-align: left;
}

.procedimento-card li {
    color: #d1d5db;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.procedimento-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.cta-procedimentos {
    text-align: center;
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.8), rgba(17, 24, 39, 0.8));
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1);
}

.cta-procedimentos h3 {
    font-size: 2rem;
    color: #f9fafb;
    margin-bottom: 1rem;
}

.cta-procedimentos p {
    color: #d1d5db;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Diferenciais Section */
.diferenciais {
    padding: 80px 0;
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
}

.diferenciais h2 {
    text-align: center;
    font-size: 2.5rem;
    background: linear-gradient(135deg, #f9fafb, #e5e7eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 3rem;
}

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

.diferencial-card {
    background: rgba(31, 41, 55, 0.5);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.diferencial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    border-color: rgba(16, 185, 129, 0.3);
}

.diferencial-card .card-icon {
    background: linear-gradient(135deg, #10b981, #059669);
    margin-bottom: 1.5rem;
}

.diferencial-card h3 {
    font-size: 1.3rem;
    color: #f9fafb;
    margin-bottom: 1rem;
}

.diferencial-card p {
    color: #d1d5db;
    line-height: 1.6;
}

/* Planos Section */
.planos {
    padding: 80px 0;
    background: #0f0f0f;
}

.planos h2 {
    text-align: center;
    font-size: 2.5rem;
    background: linear-gradient(135deg, #f9fafb, #e5e7eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

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

.plano-item {
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.8), rgba(17, 24, 39, 0.8));
    backdrop-filter: blur(10px);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
    color: #d1d5db;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.plano-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    color: #f9fafb;
    border-color: rgba(16, 185, 129, 0.3);
}

.planos-cta {
    text-align: center;
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.8), rgba(17, 24, 39, 0.8));
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1);
}

.planos-cta p {
    color: #d1d5db;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* Contato Section */
.contato {
    padding: 80px 0;
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
}

.contato h2 {
    text-align: center;
    font-size: 2.5rem;
    background: linear-gradient(135deg, #f9fafb, #e5e7eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.contato-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

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

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.info-icon i {
    color: white;
    font-size: 1.5rem;
}

.info-text h3 {
    color: #f9fafb;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.info-text p {
    color: #d1d5db;
    line-height: 1.6;
}

.info-text a {
    color: #10b981;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-text a:hover {
    color: #059669;
}

.cta-card {
    background: linear-gradient(135deg, #10b981, #059669);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    color: white;
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.3);
}

.cta-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-card p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.btn-whatsapp-large {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 1.5rem 2rem;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    font-size: 1.2rem;
    border: 1px solid rgba(255,255,255,0.3);
}

.btn-whatsapp-large:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.btn-whatsapp-large i {
    font-size: 2rem;
}

.btn-whatsapp-large span {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.btn-whatsapp-large small {
    font-size: 0.9rem;
    opacity: 0.8;
    font-weight: 400;
}

.urgencia-info {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 1rem;
    border-radius: 10px;
    font-size: 0.95rem;
    border: 1px solid rgba(255,255,255,0.2);
}

.urgencia-info i {
    color: #fbbf24;
    margin-right: 0.5rem;
}

/* Footer */
.footer {
    background: #0f0f0f;
    color: white;
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-info h3 {
    background: linear-gradient(135deg, #d1d5db, #f3f4f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.footer-info p {
    color: #9ca3af;
    margin-bottom: 0.5rem;
}

.footer-contact p {
    color: #9ca3af;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact i {
    color: #10b981;
    width: 20px;
}

.footer-contact a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #d1d5db;
}

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

.footer-bottom p {
    color: #6b7280;
    margin-bottom: 0.5rem;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    color: white;
    font-size: 2rem;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float a:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: scale(1.1);
}

@keyframes pulse {
    0% {
        box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
    }
    50% {
        box-shadow: 0 8px 35px rgba(16, 185, 129, 0.6);
    }
    100% {
        box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .nav-contact {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 100px 20px 60px;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .sobre-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contato-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .procedimentos-grid {
        grid-template-columns: 1fr;
    }
    
    .diferenciais-grid {
        grid-template-columns: 1fr;
    }
    
    .planos-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float a {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .procedimento-card,
    .diferencial-card {
        padding: 1.5rem;
    }
    
    .cta-card {
        padding: 2rem;
    }
    
    .btn-whatsapp-large {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Glass morphism effects */
.glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Elegant animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.floating {
    animation: float 3s ease-in-out infinite;
}

/* Depoimentos Section */
.depoimentos {
    padding: 80px 0;
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
}

.depoimentos h2 {
    text-align: center;
    font-size: 2.5rem;
    background: linear-gradient(135deg, #f9fafb, #e5e7eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.rating-summary {
    text-align: center;
    margin: 3rem 0;
    background: rgba(31, 41, 55, 0.5);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.rating-stars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.rating-stars i {
    color: #fbbf24;
    font-size: 1.5rem;
}

.rating-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: #f9fafb;
    margin-left: 1rem;
}

.rating-source {
    color: #9ca3af;
    font-size: 0.9rem;
}

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

.depoimento-card {
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.8), rgba(17, 24, 39, 0.8));
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    position: relative;
}

.depoimento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    border-color: rgba(251, 191, 36, 0.3);
}

.depoimento-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #fbbf24;
    font-family: serif;
    opacity: 0.3;
}

.depoimento-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.paciente-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.paciente-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.paciente-dados h4 {
    color: #f9fafb;
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.procedimento {
    color: #9ca3af;
    font-size: 0.9rem;
}

.depoimento-rating {
    display: flex;
    gap: 0.25rem;
}

.depoimento-rating i {
    color: #fbbf24;
    font-size: 1rem;
}

.depoimento-texto {
    color: #d1d5db;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
}

.depoimento-data {
    color: #6b7280;
    font-size: 0.9rem;
}

.depoimentos-cta {
    text-align: center;
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.8), rgba(17, 24, 39, 0.8));
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1);
}

.depoimentos-cta h3 {
    font-size: 2rem;
    color: #f9fafb;
    margin-bottom: 1rem;
}

.depoimentos-cta p {
    color: #d1d5db;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.doctoralia-link {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.doctoralia-link p {
    color: #9ca3af;
    font-size: 0.9rem;
    margin: 0;
}

.doctoralia-link a {
    color: #10b981;
    text-decoration: none;
    transition: color 0.3s ease;
}

.doctoralia-link a:hover {
    color: #059669;
}

.doctoralia-link i {
    margin-right: 0.5rem;
}

/* Patologias Section */
.patologias {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
}

.patologias h2 {
    text-align: center;
    font-size: 2.5rem;
    background: linear-gradient(135deg, #f9fafb, #e5e7eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

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

.patologia-card {
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.8), rgba(17, 24, 39, 0.8));
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.patologia-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border-color: rgba(16, 185, 129, 0.3);
}

.patologia-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.patologia-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.patologia-card:hover .patologia-image img {
    transform: scale(1.05);
}

.patologia-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #10b981, #059669);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.oct-label {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.patologia-content {
    padding: 2rem;
}

.patologia-content h3 {
    color: #f9fafb;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.patologia-description {
    color: #d1d5db;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.patologia-details {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(16, 185, 129, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.detail-item i {
    color: #10b981;
    font-size: 0.9rem;
}

.detail-item span {
    color: #e5e7eb;
    font-size: 0.9rem;
    font-weight: 500;
}

.sintomas {
    background: rgba(17, 24, 39, 0.5);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.05);
}

.sintomas h4 {
    color: #fbbf24;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sintomas h4::before {
    content: "⚠️";
    font-size: 1rem;
}

.sintomas ul {
    list-style: none;
    padding: 0;
}

.sintomas li {
    color: #d1d5db;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    position: relative;
    padding-left: 1.5rem;
}

.sintomas li:last-child {
    border-bottom: none;
}

.sintomas li::before {
    content: "•";
    color: #10b981;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.tecnologia-oct {
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.8), rgba(17, 24, 39, 0.8));
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    padding: 3rem;
    margin-bottom: 4rem;
}

.oct-info {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.oct-content h3 {
    color: #f9fafb;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.oct-content p {
    color: #d1d5db;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.oct-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.feature i {
    color: #10b981;
    font-size: 1.2rem;
}

.feature span {
    color: #e5e7eb;
    font-weight: 500;
}

.oct-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.oct-device {
    background: linear-gradient(135deg, #10b981, #059669);
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
    animation: pulse-oct 2s infinite;
}

.oct-device i {
    color: white;
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.oct-device span {
    color: white;
    font-weight: 600;
    font-size: 1rem;
}

@keyframes pulse-oct {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(16, 185, 129, 0.5);
    }
}

.cta-patologias {
    text-align: center;
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.8), rgba(17, 24, 39, 0.8));
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
}

.cta-patologias h3 {
    font-size: 2rem;
    color: #f9fafb;
    margin-bottom: 1rem;
}

.cta-patologias p {
    color: #d1d5db;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Responsive para patologias */
@media (max-width: 768px) {
    .patologias-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .patologia-card {
        margin: 0 1rem;
    }
    
    .patologia-content {
        padding: 1.5rem;
    }
    
    .patologia-details {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .oct-info {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .oct-features {
        grid-template-columns: 1fr;
    }
    
    .tecnologia-oct {
        padding: 2rem;
        margin: 2rem 1rem;
    }
    
    .cta-patologias {
        margin: 0 1rem;
        padding: 2rem;
    }
    
    .cta-patologias h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .patologia-image {
        height: 150px;
    }
    
    .patologia-content h3 {
        font-size: 1.3rem;
    }
    
    .patologia-description {
        font-size: 0.95rem;
    }
    
    .detail-item {
        padding: 0.4rem 0.8rem;
    }
    
    .detail-item span {
        font-size: 0.8rem;
    }
    
    .oct-device {
        width: 120px;
        height: 120px;
    }
    
    .oct-device i {
        font-size: 2.5rem;
    }
}

/* Aviso de Cobertura */
.cobertura-aviso {
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    margin: 2rem 0;
    backdrop-filter: blur(10px);
}

.aviso-texto {
    color: #d1d5db;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.aviso-texto i {
    color: #fbbf24;
    font-size: 1rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.aviso-texto strong {
    color: #fbbf24;
    font-weight: 600;
}

.contato-cobertura {
    color: #10b981;
    font-weight: 500;
}

/* Responsive para aviso */
@media (max-width: 768px) {
    .cobertura-aviso {
        margin: 1.5rem 1rem;
        padding: 1.25rem;
    }
    
    .aviso-texto {
        font-size: 0.85rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .aviso-texto i {
        align-self: flex-start;
    }
}

@media (max-width: 480px) {
    .aviso-texto {
        font-size: 0.8rem;
    }
}

/* Botão Terciário */
.btn-tertiary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2), rgba(245, 158, 11, 0.2));
    color: #fbbf24;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(251, 191, 36, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.btn-tertiary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.2), transparent);
    transition: left 0.5s;
}

.btn-tertiary:hover::before {
    left: 100%;
}

.btn-tertiary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
    border-color: rgba(251, 191, 36, 0.5);
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.3), rgba(245, 158, 11, 0.3));
}

.btn-tertiary i {
    font-size: 1.1rem;
    color: #fbbf24;
}

/* Ajustes para hero buttons com 3 botões */
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

/* Responsive para 3 botões */
@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn-primary,
    .btn-secondary,
    .btn-tertiary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .btn-primary,
    .btn-secondary,
    .btn-tertiary {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Botão Quaternário */
.btn-quaternary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(79, 70, 229, 0.2));
    color: #6366f1;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(99, 102, 241, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.btn-quaternary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.2), transparent);
    transition: left 0.5s;
}

.btn-quaternary:hover::before {
    left: 100%;
}

.btn-quaternary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
    border-color: rgba(99, 102, 241, 0.5);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.3), rgba(79, 70, 229, 0.3));
}

.btn-quaternary i {
    font-size: 1.1rem;
    color: #6366f1;
}

/* Ajustes para hero buttons com 4 botões */
.hero-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive para 4 botões */
@media (max-width: 768px) {
    .hero-buttons {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 320px;
    }
    
    .btn-primary,
    .btn-secondary,
    .btn-tertiary,
    .btn-quaternary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .btn-primary,
    .btn-secondary,
    .btn-tertiary,
    .btn-quaternary {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .hero-buttons {
        gap: 0.75rem;
    }
}

/* Layout em grid 2x2 para desktop */
@media (min-width: 769px) {
    .hero-buttons {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        max-width: 650px;
    }
    
    .btn-primary,
    .btn-secondary,
    .btn-tertiary,
    .btn-quaternary {
        min-width: 280px;
        justify-content: center;
    }
}

/* Seção Localização com Mapa */
.localizacao {
    padding: 80px 0;
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
    position: relative;
}

.localizacao::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23374151" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.1;
}

.mapa-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    margin: 60px 0;
    position: relative;
    z-index: 1;
}

.mapa-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.endereco-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
}

.endereco-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(16, 185, 129, 0.3);
}

.endereco-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    flex-shrink: 0;
}

.endereco-details h3 {
    color: #f9fafb;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.endereco-details p {
    color: #d1d5db;
    margin-bottom: 5px;
    line-height: 1.6;
}

.acesso-info, .referencias {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    padding: 25px;
}

.acesso-info h4, .referencias h4 {
    color: #f9fafb;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.acesso-info h4 i, .referencias h4 i {
    color: #10b981;
    font-size: 18px;
}

.acesso-info ul, .referencias ul {
    list-style: none;
    padding: 0;
}

.acesso-info li, .referencias li {
    color: #d1d5db;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.acesso-info li i {
    color: #10b981;
    width: 16px;
    font-size: 14px;
}

.mapa-embed {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.mapa-embed:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.mapa-embed iframe {
    border-radius: 20px;
    filter: grayscale(20%) contrast(1.1);
    transition: all 0.3s ease;
}

.mapa-embed:hover iframe {
    filter: grayscale(0%) contrast(1.2);
}

.contato-rapido {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.contato-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    text-align: left;
}

.contato-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(16, 185, 129, 0.3);
}

.contato-item i {
    font-size: 24px;
    color: #10b981;
    flex-shrink: 0;
}

.contato-item strong {
    color: #f9fafb;
    font-size: 14px;
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.contato-item p {
    color: #d1d5db;
    font-size: 14px;
    margin: 0;
}

.contato-item a {
    color: #10b981;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contato-item a:hover {
    color: #34d399;
}

/* Responsividade */
@media (max-width: 768px) {
    .mapa-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .mapa-info {
        order: 2;
    }
    
    .mapa-embed {
        order: 1;
    }
    
    .contato-rapido {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .endereco-card {
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }
    
    .endereco-icon {
        align-self: center;
    }
}

@media (max-width: 480px) {
    .localizacao {
        padding: 60px 0;
    }
    
    .mapa-embed iframe {
        height: 300px;
    }
    
    .contato-item {
        padding: 20px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}
