/* Estilos específicos para páginas internas */

body{
    width: 100%;
    background-color: #2a2a2a;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

nav{
    background-color: #000000;
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 70px;
    border-bottom: solid 2px #666;
}

nav a{
    color: white;
    font-weight: bold;
    box-sizing: border-box;
}

nav .titulo-site{
    width: 200px;
}

.menu {
    flex-wrap: wrap;
    display: flex;
    list-style: none;
}

.menu a {
    padding: 10px 20px;
    border-radius: 15px;
    box-sizing: border-box;
    text-decoration: none;
    color: white;
}

.menu a:hover{
    background-color: #f6e965;
    color: #000000;
}

.menu a.active {
    color: #f6e965;
}

.menu a.active:hover{
    color: #000;
}

.menu li {
    padding-block: 0;
    letter-spacing: 3px;
    margin-left: 20px;
    list-style: none;
}

footer {
    border-top: solid 2px #666;
    background-color: #000000;
    color: white;
    padding: 20px 0;
    text-align: center;
    width: 100%;
    margin-top: auto;
}

#rodape h3{
    font-size: 50px;
    color: #f6e965;
    box-shadow: #000000;
}

.nomerodape h2,
.nomerodape p {
    margin: 0;
    display: inline-block;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: #f6e965;
}

.map-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}

main {
    flex: 1;
}

/* Container específico para páginas */
.contato-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.left, .right {
    background: #333333;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.left h2, .right h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.left p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #cccccc;
    margin-bottom: 30px;
    text-align: center;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25d366;
    color: white;
    padding: 15px 25px;
    text-decoration: none;
    border-radius: 5px;
    margin-bottom: 30px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background-color: #1da851;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37,211,102,0.3);
}

.btn-whatsapp img {
    width: 24px;
    height: 24px;
}

.operation {
    background: #2a2a2a;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #667eea;
    width: 100%;
    max-width: 450px;
}

.operation h2 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.operation p {
    margin-bottom: 8px;
    color: #cccccc;
}

.social-icons ul {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding: 0;
}

.social-icons ul li {
    list-style: none;
}

.social-icons ul li a {
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid #f0f0f0;
}

.social-icons ul li a:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.social-icons ul li a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.right p {
    margin-bottom: 10px;
    color: #cccccc;
    font-size: 1.1rem;
}

/* Estilos para página Sobre Nós */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text {
    background: #333333;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #ffffff;
    position: relative;
    text-align: center;
}

.highlight {
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 20px;
    text-align: justify;
}

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

.about-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.02);
}

/* Responsividade */
@media (max-width: 768px) {
    .contato-container,
    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 60px 20px;
    }
    
    .left, .right, .about-text {
        padding: 30px 20px;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
    
    .social-icons ul {
        justify-content: center;
    }
    
    .operation {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .left h2, .right h2 {
        font-size: 1.5rem;
    }
    
    .about-text h2 {
        font-size: 1.8rem;
    }
    
    .btn-whatsapp {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}
