/* Reset and general styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f7f7f7;
    color: #333;
}

/* Reset and general styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f7f7f7;
    color: #333;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #380052;
    position: relative;
    height: 100px;
}

header .left-nav ul,
header .right-nav ul {
    list-style: none;
    display: flex;
    gap: 15px;
}

header .left-nav ul li,
header .right-nav ul li {
    margin: 0 10px;
}

header .left-nav ul li a,
header .right-nav ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
}

header .left-nav ul li a:hover,
header .right-nav ul li a:hover {
    color: #ff6b6b;
}

/* Center Logo Styles */
.logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.logo img {
    max-width: 120px;
    height: auto;
}

/* Make Header Responsive */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        height: auto;
    }

    .logo {
        margin: 15px 0;
        position: static;
        transform: none;
    }

    .left-nav ul, .right-nav ul {
        flex-direction: column;
        gap: 10px;
    }
}

/* General Styling for Main Section */
.main-section {
    text-align: center;
    padding: 60px 0;
    background-color: #f5f7fa;
    position: relative;
}

.main-section .container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}



/* Description Section */
.description {
    margin-top: 60px;
    max-width: 600px;
    text-align: center;
    position: relative;
}

.description h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    text-align: center;
}

.description p {
    font-size: 18px;
    color: #666;
    text-align: center;
}
/* Visitor Section Styles */
.visitor-section {
    background-color: #f0f4f8;
    padding: 60px 0;
    text-align: center;
}

.visitor-section h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 10px;
}

.visitor-section p {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
}

/* Visitor Form */
.visitor-form {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.visitor-form button {
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.btn-primary {
    background-color: #007bff;
    color: white;
}

.btn-primary:hover {
    background-color: #0056b3;
}

.btn-secondary {
    background-color: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background-color: #5a6268;
}

/* Quick Connect Section (Optional) */
.quick-connect {
    margin: 30px 0;
}

.quick-connect p {
    font-size: 16px;
    color: #666;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icons img {
    width: 40px;
    height: 40px;
    cursor: pointer;
}

/* CTA Button */
.cta-button-container {
    margin-top: 40px;
}

.cta-button {
    padding: 15px 40px;
    font-size: 20px;
    background-color: #ff6b6b;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #e04a4a;
}


/* Footer Section Styles */
.footer-section {
    background-color: #333;
    color: #fff;
    padding: 40px 0;
    text-align: center;
}

.footer-section .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Footer Links */
.footer-links ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.footer-links ul li {
    display: inline;
    margin: 0 15px;
}

.footer-links ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}

.footer-links ul li a:hover {
    color: #ff6b6b;
}

/* Footer Icons */
.footer-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.footer-icons a img {
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.footer-icons a img:hover {
    transform: scale(1.2);
}

/* Estilo existente acima */

/* Novo estilo para SVG Animation Section */
.svg-section {
    text-align: center;
    padding: 60px 0;
    background-color: #f5f7fa;
}

#animation-container {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
}

.svg-anim {
    max-width: 80%;
    height: auto;
}

/* Animações */
.cloud {
    animation: moveClouds 30s infinite linear;
}

.balloon {
    animation: float 10s infinite ease-in-out;
}

.building {
    animation: pulse 5s infinite ease-in-out;
}

/* Keyframes para as nuvens se moverem da esquerda para a direita */
@keyframes moveClouds {
    0% { transform: translateX(0); }
    100% { transform: translateX(500px); }
}

/* Keyframes para os balões flutuarem para cima e para baixo */
@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0); }
}

/* Keyframes para dar uma leve pulsação nos prédios */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.balloon {
    animation-play-state: running;
}

/* Definição dos keyframes para a animação float */
@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0); }
}

/* Definição dos keyframes para a animação bounce */
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-30px); }
}

/* Aplicação da animação padrão float nos balões */
.balloon {
    -webkit-animation: float 5s infinite ease-in-out;  /* Compatibilidade com Safari/Chrome */
    -moz-animation: float 5s infinite ease-in-out;     /* Compatibilidade com Firefox */
    animation: float 5s infinite ease-in-out;          /* Animação padrão */
}

/* Definição da animação bounce */
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-30px); }
}

/* Definição da animação float */
@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0); }
}
