* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #e3f2fd 0%, #f5f5f5 100%);
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

/* Header */
header {
    background: linear-gradient(135deg, #1976d2 0%, #2196f3 100%);
    color: white;
    padding: 3rem 2rem;
    text-align: center;
}

.header-content {
    animation: fadeInDown 1s ease;
}

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

.logo i {
    font-size: 3rem;
    animation: pulse 2s infinite;
}

header h1 {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 300;
}

/* Hero Section */
.hero {
    background: linear-gradient(to right, #64b5f6 0%, #42a5f5 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.hero-content {
    animation: fadeIn 1.5s ease;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 1rem;
}

.status-badge i {
    animation: rotate 2s linear infinite;
}

/* Especialidades */
.especialidades {
    padding: 4rem 2rem;
    background: white;
}

.especialidades h3 {
    text-align: center;
    font-size: 2rem;
    color: #1976d2;
    margin-bottom: 3rem;
    font-weight: 300;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.card {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #90caf9;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(25, 118, 210, 0.2);
}

.card i {
    font-size: 3rem;
    color: #1976d2;
    margin-bottom: 1rem;
}

.card h4 {
    color: #1565c0;
    font-size: 1.2rem;
    font-weight: 400;
}

/* Contato */
.contato {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f5f5f5 0%, #e3f2fd 100%);
}

.contato h3 {
    text-align: center;
    font-size: 2rem;
    color: #1976d2;
    margin-bottom: 3rem;
    font-weight: 300;
}

.contato-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto 3rem;
}

.contato-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.contato-item:hover {
    transform: translateY(-5px);
}

.contato-item i {
    font-size: 2rem;
    color: #2196f3;
    min-width: 40px;
}

.contato-item h4 {
    color: #1976d2;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contato-item a {
    color: #2196f3;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contato-item a:hover {
    color: #1565c0;
}

.contato-item p {
    color: #666;
    line-height: 1.8;
}

/* Mapa */
.mapa {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.mapa iframe {
    display: block;
}

/* Social */
.social {
    padding: 4rem 2rem;
    background: white;
    text-align: center;
}

.social h3 {
    font-size: 2rem;
    color: #1976d2;
    margin-bottom: 2rem;
    font-weight: 300;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-size: 1.1rem;
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.social-btn i {
    font-size: 1.5rem;
}

.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.threads {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
}

/* Footer */
footer {
    background: #1976d2;
    color: white;
    text-align: center;
    padding: 2rem;
}

footer p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.footer-note {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Animações */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Responsive */
@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }
    
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .especialidades h3,
    .contato h3,
    .social h3 {
        font-size: 1.5rem;
    }
    
    .cards {
        grid-template-columns: 1fr;
    }
    
    .contato-grid {
        grid-template-columns: 1fr;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
    }
    
    .social-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}
