:root {
    --azul-claro: #1d8aa9;
    --azul-escuro: #06026e;
    --branco: #ffffff;
    --cinza-claro: #f5f5f5;
    --cinza-escuro: #333333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}
@font-face {
    font-family: 'Lemon-Milk';
    src: url('../fonts/LEMONMILK-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--cinza-escuro);
    line-height: 1.6;
    background-color: var(--branco);
    overflow-x: hidden;
    overflow-y: auto;
}

.container-h {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}
#segundo-mobile{
    display: none;
}

/* Header Styles */
.header-container {
    background: linear-gradient(135deg, var(--azul-escuro), var(--azul-claro));
    position: auto;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    width: 90%;
}

.logo {
    display: flex;
    align-items: center;
    margin: auto;
    gap: 1rem;
    z-index: 100;
}

.logo img {
    width: 80px;
    height: auto;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo h1 {
  font-family: 'Lemon-Milk';
    font-size: 1.5rem;
    margin: 0;
    line-height: 1;
    font-weight: 700;
    color: var(--branco);
}

.logo p {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
    color: var(--branco);
}

/* Navigation Styles - Desktop */
.nav-desktop {
    width: 100%;
    background-color: var(--azul-escuro);
    padding: 0.8rem 0;
    position: static;
    top: 0;
    z-index: 100;
}

.nav-desktop ul {
    display: flex;
    justify-content: center;
    list-style: none;
    flex-wrap: wrap;
}

.nav-desktop ul li {
    margin: 0 1rem;
}

.nav-desktop ul li a {
    color: var(--branco);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-desktop ul li a:hover {
    background-color: var(--azul-claro);
}

/* Mobile Menu Styles */
.mobile-menu-btn {
    display: none;
    font-size: 1.8rem;
    color: var(--branco);
    cursor: pointer;
    background: none;
    border: none;
    z-index: 1001;
}

.close-menu-btn {
    display: none;
    position: fixed;
    top: 20px;
    right: 20px;
    font-size: 1.8rem;
    color: var(--azul-escuro);
    cursor: pointer;
    z-index: 1002;
    background: none;
    border: none;
}

.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
}

.nav-mobile {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background-color: var(--branco);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 999;
    transition: right 0.3s ease;
    padding: 80px 20px 20px;
    overflow-y: auto;
}

.nav-mobile.active {
    right: 0;
}

.nav-mobile ul {
    list-style: none;
}

.nav-mobile ul li {
    margin-bottom: 1rem;
}

.nav-mobile ul li a {
    color: var(--azul-escuro);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    display: block;
    padding: 0.8rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-mobile ul li a:hover {
    background-color: var(--cinza-claro);
}

/* Hero Section */
.hero {
    height: 60vh;
    color: var(--branco);
    padding: 4rem 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Container do vídeo de background */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(120%) contrast(120%) brightness(20%);
    z-index: -1;
}

/* Camada escura sobre o vídeo para melhor legibilidade */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* Conteúdo do hero (deve estar acima do vídeo) */
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero h2 {
    margin-bottom: 1rem;
    -webkit-text-stroke: white 1px;
    text-shadow: white 0px 0px 2px;
    backdrop-filter: blur(10px);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    background-color: var(--azul-escuro);
    color: var(--branco);
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: var(--branco);
    color: var(--azul-escuro);
}

/* Other Sections */
section {
    padding: 3rem 0;
}

h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: var(--azul-escuro);
}
h2::selection{
    background-color: white;
}

#welcome{
    background: imag;
}

.service-grid, .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card, .team-card {
    background-color: var(--branco);
    border-radius: 8px;
    overflow: hidden;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    text-align: center;
    transition: 0.8s ease;
}

.service-card:hover, .team-card:hover {
    transform: translateY(-10px) scale(1.1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.187);

}

.service-card i {
    font-size: 3rem;
    color: var(--azul-claro);
    margin-bottom: 1rem;
}

.service-card h3, .team-card h3 {
    margin-bottom: 1rem;
    color: var(--azul-escuro);
}

.team-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid var(--azul-claro);
}

.about {
    background-color: var(--cinza-claro);
}
.about::selection{
    background-color: white;
}

.about p {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}


/* WhatsApp Group Section */
.whatsapp-group-section {
    width: 100%;
    padding: 80px 5%;
    background: linear-gradient(135deg, var(--azul-escuro) 0%, var(--azul-claro) 100%);
    color: var(--branco);
    position: relative;
    overflow: hidden;
    border-top: 3px solid var(--dourado);
    border-bottom: 3px solid var(--dourado);
}

.whatsapp-group-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.whatsapp-group-content {
    flex: 1;
    min-width: 300px;
    position: relative;
    z-index: 2;
}

.whatsapp-group-image {
    flex: 1;
    min-width: 50px;
    width: 40%;
    display: flex;
    padding: 2%;
    justify-content: center;
    align-items: center;
}

.group-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 3px solid var(--dourado);
}

.whatsapp-group-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-family: 'Bie-bold', sans-serif;
    margin-bottom: 20px;
    color: var(--dourado);
    line-height: 1.3;
}

.whatsapp-group-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 600px;
}

.whatsapp-group-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}


#contagemid {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.contagem {
    padding: 15px;
    border-radius: 10px;
    background: linear-gradient(145deg, #ff3c3c, #cc0000);
    box-shadow: 0 5px 15px rgba(204, 0, 0, 0.3);
    color: white;
    max-width: 500px;
    width: auto;
    display: inline-block;
}

.timer {
    display: flex;
    justify-content: space-around;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.time-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 5px;
}

.time-number {
    font-size: 1.5rem;
    font-weight: bold;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 8px;
    border-radius: 5px;
    min-width: 50px;
    margin-bottom: 3px;
    text-align: center;
}

.time-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mensagem p {
    margin: 0;
    font-size: 0.9rem;
    font-weight: bold;
    text-align: center;
}

/* Responsividade */
@media (max-width: 600px) {
    #contagemid {
        top: 10px;
        left: 10px;
        right: 10px;
        position: fixed;
    }
    
    .contagem {
        width: calc(100% - 20px);
        padding: 10px;
    }
    
    .time-number {
        font-size: 1.2rem;
        min-width: 40px;
        padding: 5px;
    }
    
    .time-label {
        font-size: 0.6rem;
    }
    
    .mensagem p {
        font-size: 0.8rem;
    }
}

/* Efeito de pulsação para alerta */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefit-icon {
    font-size: 1.5rem;
}

.benefit-text {
    font-size: 0.95rem;
}

.whatsapp-group-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    background-color: #25D366;
    color: white;
    font-family: 'Bienale-medium', sans-serif;
    font-size: 1.1rem;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    margin-top: 20px;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.whatsapp-group-button:hover {
    background-color: #128C7E;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    border-color: var(--dourado);
}

.whatsapp-group-button svg {
    transition: transform 0.3s ease;
}

.whatsapp-group-button:hover svg {
    transform: translateX(2px);
}

.whatsapp-group-note {
    font-size: 0.9rem;
    margin-top: 15px;
    font-style: italic;
    opacity: 0.9;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .whatsapp-group-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .whatsapp-group-content {
        order: 2;
    }
    
    .whatsapp-group-image {
        order: 1;
    }
    
    .whatsapp-group-benefits {
        grid-template-columns: 1fr;
    }
    
    .whatsapp-group-button {
        width: 100%;
        padding: 15px;
    }
}

/* Animation */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.whatsapp-group-button {
    animation: pulse 2s infinite;
}

@supports (-webkit-touch-callout: none) {
    .whatsapp-group-button {
        -webkit-tap-highlight-color: transparent;
    }
    
    .whatsapp-group-section {
        padding: 60px 5%;
    }
}


.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    background-color: #25D366;
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: background-color 0.3s ease, transform 0.3s ease;
    overflow: hidden;
    animation: pulse 2s infinite, deslize 4s ease-in-out;
}

.whatsapp-button img {
    width: 100%;
    height: auto;
    opacity: 1;
    filter: none;
    pointer-events: none;
}

.whatsapp-button:hover {
    background-color: #25D366;
    transform: scale(1.1);
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 10px #25D366; }
    50% { transform: scale(1.1); box-shadow: 0 0 20px #25D366; }
    100% { transform: scale(1); box-shadow: 0 0 10px #25D366; }
}

@keyframes deslize {
    0% { transform: translateY(200%); }
    100% { transform: translateY(0); }
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}


.step-progress {
    display: flex;
    justify-content: space-between;
    margin: 30px 0;
    position: relative;
}

.step-progress::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #ddd;
    z-index: 1;
}

.step {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    position: relative;
    z-index: 2;
}

.step.active {
    background-color: #6e8efb;
    color: white;
}

.step.completed {
    background-color: #4CAF50;
    color: white;
}

.step-label {
    position: absolute;
    top: 45px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    font-size: 0.8rem;
}

.form-section {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    display: none;
}

.form-section.active {
    display: block;
}

h2 {
    margin-bottom: 20px;
    color: #444;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

input, select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.price-display {
    background-color: #f0f9ff;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
    color: #1e88e5;
}

.color-options {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.color-option {
    width: 80px;
    height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    padding: 8px;
    border-radius: 5px;
    transition: all 0.3s;
}

.color-option:hover {
    background-color: #f0f0f0;
}

.color-option.selected {
    background-color: #e6f7ff;
    border: 1px solid #6e8efb;
}

.color-box {
    width: 40px;
    height: 40px;
    border-radius: 5px;
    margin-bottom: 5px;
}

.color-box.blue {
    background: linear-gradient(135deg, #4a86e8, #3d6cb9);
}

.color-box.red {
    background: linear-gradient(135deg, #e84a4a, #b93d3d);
}

.color-box.colorful {
    background: linear-gradient(135deg, #4ae8cf, #e84ad5, #e8c24a);
}

button {
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-next {
    background-color: #6e8efb;
    color: white;
}

.btn-next:hover {
    background-color: #5a7ce2;
}

.btn-prev {
    background-color: #ddd;
    color: #555;
}

.btn-prev:hover {
    background-color: #ccc;
}

.button-group {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.pix-info {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.qrcode-container {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.qrcode {
    width: 200px;
    height: 200px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.pix-key {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    padding: 10px;
    background-color: #fff;
    border-radius: 5px;
    border: 1px solid #ddd;
}

.btn-copy {
    background-color: #4CAF50;
    color: white;
    padding: 8px 15px;
}

.btn-copy:hover {
    background-color: #45a049;
}

.amount {
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
    margin: 15px 0;
}

.payment-check {
    text-align: center;
    margin: 20px 0;
    padding: 15px;
    background-color: #fff8e1;
    border-radius: 8px;
}

.btn-confirm-payment {
    background-color: #ff9800;
    color: white;
    margin-top: 10px;
}

.btn-confirm-payment:hover {
    background-color: #f57c00;
}

.success-message {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    background-color: #e8f5e9;
    border-radius: 8px;
    border-left: 4px solid #4CAF50;
}

.ticket-preview {
    margin: 20px 0;
    padding: 20px;
    border: 1px dashed #ddd;
    border-radius: 8px;
    text-align: center;
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-download {
    background-color: #4CAF50;
    color: white;
}

.btn-download:hover {
    background-color: #45a049;
}

.btn-home {
    background-color: #6e8efb;
    color: white;
}

.btn-home:hover {
    background-color: #5a7ce2;
}

.btn-buy-more {
    background-color: #9c27b0;
    color: white;
}

.btn-buy-more:hover {
    background-color: #7b1fa2;
}

@media (max-width: 768px) {
    .color-options {
        flex-direction: column;
        align-items: center;
    }
    
    .pix-key {
        flex-direction: column;
        gap: 10px;
    }
    
    .button-group {
        flex-direction: column;
    }
}

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-info, .contact-form {
    background-color: var(--branco);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.contact-info h3, .contact-form h3 {
    margin-bottom: 1.5rem;
    color: var(--azul-escuro);
}

.contact-info p {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.contact-info i {
    margin-right: 0.5rem;
    color: var(--azul-claro);
    width: 20px;
    text-align: center;
}

.map-container {
    margin-top: 2rem;
    border-radius: 8px;
    overflow: hidden;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
footer {
    background-color: #00204f;
    color: white;
    padding: 70px 300px 0;
    border: none;
    border-left: none;
    border-right: none;
    border-top: solid #1d8aa9 10px;
    margin-top: 5vh;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 15px;
}

.footer-logo h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--yellow);
}

.footer-logo p {
    color: #aaa;
}
#links-sociais{
    display: flex;
    gap: 200px;
}

.footer-links h4,
.footer-social h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--yellow);
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #1d8aa9;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--azul-escuro);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon:hover {
    background-color: var(--azul-claro);
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.social-img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    filter: invert(1);
    transition: transform 0.3s ease;
}

.social-icon:hover .social-img {
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #333;
    color:white;
    font-size: 0.9rem;
}

footer .copy{
    color: rgba(255, 255, 255, 0.728);
    text-decoration: none;
    transition: 1.2s;
}
footer .copy:hover{
    color: #FFEB3B;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .nav-desktop {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .mobile-overlay.active {
        display: block;
    }
    
    .close-menu-btn.active {
        display: block;
    }
    
    .logo {
        flex-direction: row;
        gap: 1rem;
    }
    
    .logo img {
        width: 60px;
    }
    
    .logo h1 {
        font-size: 1.8rem;
    }
    
    .logo p {
        font-size: 0.9rem;
    }
    .footer {
        padding: 50px 20px 0;
    }

    #links-sociais {
        flex-direction: column;
        gap: 30px;
    }

    .social-icons {
        justify-content: center;
    }
    .footer {
    background-color: #00204f;
    color: var(--branco);
    padding: 50px 5%;
    border-top: solid var(--dourado) 10px;
    margin-top: 5vh;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-logo {
    margin-bottom: 20px;
    text-align: center;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 15px;
}

.footer-logo h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--dourado);
}

.footer-logo p {
    color: #aaa;
}

#links-sociais {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.footer-links h4, .footer-social h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--dourado);
    text-align: center;
}

.footer-links ul {
    list-style: none;
    text-align: center;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--dourado);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #333;
    border-radius: 50%;
    color: var(--branco);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--dourado);
    color: var(--azul-claro);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #333;
    color: #aaa;
    font-size: 0.9rem;
}

.copy {
    color: rgba(255, 255, 255, 0.728);
    text-decoration: none;
    transition: 1.2s;
}

.copy:hover {
    color: var(--dourado);
}
}

@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .logo {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .logo-text {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .nav-mobile {
        width: 90%;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero {
        padding: 3rem 0;
    }
    .footer {
    background-color: #00204f;
    color: var(--branco);
    padding: 50px 5%;
    border-top: solid var(--dourado) 10px;
    margin-top: 5vh;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-logo {
    margin-bottom: 20px;
    text-align: center;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 15px;
}

.footer-logo h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--dourado);
}

.footer-logo p {
    color: #aaa;
}

#links-sociais {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.footer-links h4, .footer-social h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--dourado);
    text-align: center;
}

.footer-links ul {
    list-style: none;
    text-align: center;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--dourado);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #333;
    border-radius: 50%;
    color: var(--branco);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color:var(--azul-claro) ;
    color: var(--dourado);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #333;
    color: #aaa;
    font-size: 0.9rem;
}

.copy {
    color: rgba(255, 255, 255, 0.728);
    text-decoration: none;
    transition: 1.2s;
}

.copy:hover {
    color: var(--dourado);
}
}