* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: linear-gradient(135deg, #87CEEB 0%, #B0E0E6 100%);
    color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-top {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.header-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;
    position: relative;
}

header .logo {
    max-width: 200px;
    height: auto;
    justify-self: center;
    grid-column: 2;
}

.social-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-self: end;
    grid-column: 3;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.social-btn.instagram:hover {
    background-color: #E4405F;
    border-color: #E4405F;
}

.social-btn.whatsapp:hover {
    background-color: #25D366;
    border-color: #25D366;
}

.social-btn.facebook:hover {
    background-color: #1877F2;
    border-color: #1877F2;
    opacity: 0.7;
    cursor: not-allowed;
}

.social-btn svg {
    width: 20px;
    height: 20px;
}

.header-bottom {
    padding: 30px 0;
    text-align: center;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    opacity: 0.95;
}

/* Hero Section */
.hero {
    background-color: #f8f9fa;
    padding: 60px 0;
    text-align: center;
}

.hero h2 {
    font-size: 2rem;
    color: #4682B4;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

/* Sections */
section {
    padding: 60px 0;
}

section h2 {
    font-size: 2rem;
    color: #4682B4;
    margin-bottom: 30px;
    text-align: center;
}

.sobre {
    background-color: #ffffff;
}

.sobre p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Serviços */
.servicos {
    background: linear-gradient(to bottom, #ffffff 0%, #E6F3F8 100%);
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.servico-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.servico-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.servico-card h3 {
    color: #4682B4;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.servico-card p {
    color: #666;
    line-height: 1.6;
}

/* Galeria */
.galeria {
    background-color: #ffffff;
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.foto-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    background: linear-gradient(135deg, #87CEEB 0%, #B0E0E6 100%);
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.foto-item:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.foto-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 250px;
}

/* Vídeos */
.videos {
    background: linear-gradient(to bottom, #E6F3F8 0%, #ffffff 100%);
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.video-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.video-placeholder {
    background: linear-gradient(135deg, #87CEEB 0%, #B0E0E6 100%);
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    cursor: pointer;
}

.video-placeholder svg {
    margin-bottom: 10px;
    opacity: 0.9;
}

.video-placeholder p {
    font-size: 1rem;
    font-weight: 500;
}

.video-info {
    padding: 20px;
}

.video-info h3 {
    color: #4682B4;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.video-info p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Contato */
.contato {
    background: linear-gradient(to bottom, #E6F3F8 0%, #ffffff 100%);
}

.contato > .container > p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #666;
}

.contato-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.contato-item {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.contato-item h3 {
    color: #4682B4;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.contato-item p {
    color: #666;
    margin-bottom: 8px;
    line-height: 1.6;
}

/* Footer */
footer {
    background-color: #4682B4;
    color: white;
    text-align: center;
    padding: 30px 0;
    margin-top: 40px;
}

footer p {
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
    .header-content {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    header .logo {
        max-width: 120px;
        grid-column: 1;
        justify-self: center;
    }
    
    .social-buttons {
        justify-content: center;
        grid-column: 1;
        justify-self: center;
    }
    
    .social-btn {
        width: 45px;
        height: 45px;
    }
    
    .social-btn svg {
        width: 22px;
        height: 22px;
    }
    
    header h1 {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .hero h2 {
        font-size: 1.5rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    section h2 {
        font-size: 1.7rem;
    }
    
    .servicos-grid,
    .contato-info {
        grid-template-columns: 1fr;
    }
    
    .galeria-grid {
        grid-template-columns: 1fr;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
    }
    
    .video-placeholder {
        height: 180px;
    }
}


