@media print {
    .preloader {
        display: none !important;
    }
}

@media (prefers-reduced-motion: no-preference) {
    /* Animações aqui */
}

:root {
    /* Cores */
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary: #64748b;
    --dark: #0f172a;
    --light: #f8fafc;
    --gray: #94a3b8;
    
    /* Fontes */
    --font-primary: 'Plus Jakarta Sans', sans-serif;
    
    /* Outros */
    --radius: 12px;
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --transition: all 0.3s ease;
}

/* Reset e Estilos Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.transformando {
  background: linear-gradient(120deg, #007bff, #00b894);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

/* Botões */
.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background: #20828e;
    color: white !important;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.btn-primary:hover {
    background: #06081a;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--gray);
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 500;
    margin-left: 1rem;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: var(--light);
    transform: translateY(-2px);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    margin-top: 10px;
    height: 40px;
    width: 100%;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.botoesNavbar {
    color: #06081a;
    padding: 10px;
    border-radius: 10px;
}

.botoesNavbar:hover {
    color: white !important;
    background-color: #20828e;
}

.nav-links a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover:not(.btn-primary) {
    color: #ffff;
}

/* Hero Section */
.hero {
    padding: 250px 0 100px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--secondary);
    margin-bottom: 2rem;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: auto;
    max-width: 100%;
    height: auto;
    animation: floatAndScale 8s ease-in-out infinite;
    will-change: transform;
}

.hero-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: var(--light);
    clip-path: polygon(0 50%, 100% 0, 100% 100%, 0% 100%);
}

/* Sobre Section - Novo Design */
.sobre {
    padding: 120px 0;
    background: var(--light);
    overflow: hidden;
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 4rem;
}

.sobre-image {
    position: relative;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    border-radius: var(--radius);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #20828e;
    color: white;
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    animation: float 6s ease-in-out infinite;
}

.experience-badge .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.875rem;
    opacity: 0.9;
}

.info-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: white;
    border: none;
    border-radius: var(--radius);
    font-family: inherit;
    font-weight: 500;
    color: var(--secondary);
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn i {
    font-size: 1.2rem;
}

.tab-btn.active {
    background: #0a1d36;
    color: white;
}

.tab-content {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.tab-pane {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-pane.active {
    display: block;
}

.tab-pane h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.feature-list {
    list-style: none;
    margin-top: 1.5rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: var(--light);
    border-radius: var(--radius);
    transition: var(--transition);
}

.feature-list li:hover {
    transform: translateX(10px);
}

.feature-list i {
    color: #37ece9;
    font-size: 1.2rem;
}

.team-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--light);
    border-radius: var(--radius);
    transition: var(--transition);
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--secondary);
    font-size: 0.875rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Soluções Section - Novo Design */
.solucoes {
    padding: 120px 0 0 0;
    background: white;
}

.solution-section {
    /* margin-top: 6rem; */
    padding: 4rem 0;
    position: relative;
}

.solution-section:nth-child(even) {
    /* background: white; */
}

.solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.solution-section.reverse .solution-content {
    direction: rtl;
}

.solution-section.reverse .solution-info {
    direction: ltr;
}

.solution-icon {
    width: 80px;
    height: 80px;
    background: rgba(32, 130, 142, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.solution-icon i {
    font-size: 2.5rem;
    color: #20828e;
}

.solution-info h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #0a1d36;
}

.solution-info > p {
    font-size: 1.1rem;
    color: var(--secondary);
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: var(--radius);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.solution-section:nth-child(even) .feature-item {
    background: var(--light);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-item i {
    font-size: 1.5rem;
    color: #37ece9;
    background: rgba(32, 130, 142, 0.1);
    padding: 1rem;
    border-radius: 12px;
}

.feature-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #0a1d36;
}

.feature-text p {
    color: var(--secondary);
    font-size: 0.9rem;
}

.solution-image {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.solution-image img {
    width: 100%;
    height: 100%;
    border-radius: var(--radius);
    animation: floatAndScale 8s ease-in-out infinite;
}

/* Decorative elements */
.solution-section::before {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    /* background: rgba(55, 236, 233, 0.1); */
    border-radius: 50%;
    top: -20px;
    left: -20px;
    z-index: 0;
}

.solution-section::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    /* background: rgba(10, 29, 54, 0.1); */
    border-radius: 12px;
    bottom: -20px;
    right: -20px;
    transform: rotate(45deg);
}

/* Botão Flutuante */
.floating-btn {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    color: #0a1d36;
    padding: 1rem 2rem;
    border-radius: 100px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: 2px solid #f3f4f6;
}

.floating-btn span {
    font-size: 0.9rem;
}

.floating-btn i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.floating-btn:hover {
    background: #20828e;
    color: white;
    transform: translateX(-50%) translateY(-5px);
    border-color: #20828e;
}

.floating-btn:hover i {
    transform: translateX(5px);
}

/* Ajuste para mobile */
@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        order: 1;
        text-align: center;
    }
    
    .hero-content h1 {
        justify-content: center;
        align-items: center;
        font-size: 2.2rem;
    }
    
    .transformando {
        display: inline-block;
        text-align: center;
    }
    
    .contato-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-links {
        display: none;
    }
    
    .sobre-content {
        grid-template-columns: 1fr;
    }
    
    .info-tabs {
        flex-direction: column;
    }
    
    .team-stats {
        grid-template-columns: 1fr;
    }

    .solution-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .solution-section.reverse .solution-content {
        direction: ltr;
    }

    .solution-info {
        text-align: center;
        display: flex;
        flex-direction: column;
    }

    .solution-icon {
        margin: 0 auto 2rem;
    }

    .solution-info h3 {
        font-size: 2rem;
        text-align: center;
    }

    .solution-info > p {
        margin-bottom: 2rem;
    }

    .solution-image {
        order: 1;
        margin: 2rem 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        order: 2;
        margin-bottom: 2rem;
    }

    .floating-btn {
        position: relative;
        bottom: 0;
        margin-top: 1.5rem;
        width: 100%;
        justify-content: center;
        order: 3;
    }
}

/* Section Headers - Novo Estilo */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #101539;
    background: rgba(67, 97, 238, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: #0a1d36;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-title .highlight {
    color: #37e8e5;
}

.section-description {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Ajuste responsivo */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
}

/* Footer - Novo Design */
.footer {
    position: relative;
    color: white;
    padding: 0;
    margin-top: 6rem;
    background: #0a1d36; /* Cor de fallback */
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, 
        rgba(10, 29, 54, 0.98),
        rgba(10, 29, 54, 0.90)
    );
    z-index: 1;
}

.footer-content {
    position: relative;
    background-image: url('https://zgiixczirvpplwkdhkpo.supabase.co/storage/v1/object/public/images//footer.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 80px 0 0px;
    z-index: 2;
}

.footer-grid {
    max-width: 1200px;
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr;
    gap: 4rem;
    margin: 0 auto 4rem auto;
    padding: 0 2rem;
}

.footer-info {
    max-width: 400px;
}

.footer-logo {
    height: 40px;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1); /* Torna o logo branco */
}

.footer-info p {
    color: #94a3b8;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #20828e;
    transform: translateY(-3px);
}

.footer h3 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    color: #20828e;
    font-size: 1.2rem;
}

.contact-item div {
    display: flex;
    flex-direction: column;
}

.contact-item span {
    color: #94a3b8;
    font-size: 0.85rem;
}

.contact-item a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #20828e;
}

.newsletter-form .form-group {
    position: relative;
    margin-top: 1rem;
}

.newsletter-form input {
    width: 100%;
    padding: 1rem;
    padding-right: 3rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: #20828e;
    outline: none;
}

.newsletter-form button {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    padding: 0 1rem;
    background: transparent;
    border: none;
    color: #20828e;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    color: white;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: #94a3b8;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

/* Ajuste para mobile */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-info {
        max-width: 100%;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer-links {
        justify-content: center;
    }
}

/* Mapa no Footer */
.footer-map {
    position: relative;
    width: 100%;
    z-index: 3;
}

.map-title {
    text-align: center;
    color: white;
    font-size: 2rem;
    margin-bottom: 2rem;
    position: relative;
}

.map-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: #20828e;
    border-radius: 2px;
}

.map-container {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 400px;
}

/* Ajuste para mobile */
@media (max-width: 768px) {
    .map-title {
        font-size: 1.5rem;
    }
    
    .map-container iframe {
        height: 250px;
    }
}

/* Modal de Contato */
.contact-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1100;
}

.contact-modal.active {
    display: flex;
}

.contact-modal.active .modal-content {
    animation: modalIn 0.3s ease forwards;
}

.contact-modal.active .modal-overlay {
    animation: fadeIn 0.3s ease forwards;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    z-index: 1;
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close:hover {
    color: #0f172a;
    transform: rotate(90deg);
}

.modal-content h3 {
    font-size: 1.8rem;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.modal-content > p {
    color: #64748b;
    margin-bottom: 2rem;
}

.contact-options {
    display: grid;
    gap: 1rem;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.contact-option:hover {
    transform: translateY(-3px);
}

.contact-option.whatsapp:hover {
    background: #25D366;
    border-color: #25D366;
}

.contact-option.email:hover {
    background: #37ece9;
    border-color: #37ece9;
}

.option-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.whatsapp .option-icon {
    background: #25D366;
    color: white;
}

.email .option-icon {
    background: #37ece9;
    color: white;
}

.option-info h4 {
    color: #0f172a;
    margin-bottom: 0.25rem;
    transition: all 0.3s ease;
}

.option-info p {
    color: #64748b;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.contact-option:hover .option-info h4,
.contact-option:hover .option-info p {
    color: white;
}

/* Animação de entrada */
@keyframes modalIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
/* Preloader - Novo Design */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.preloader.fade-out {
    opacity: 0;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    width: 200px;
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
}

.loader-bar {
    width: 200px;
    height: 3px;
    background: #edf2f7;
    border-radius: 10px;
    overflow: hidden;
}

.loader-progress {
    width: 0;
    height: 100%;
    background: #20828e;
    border-radius: 10px;
    animation: progress 2.5s ease forwards;
}

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

@keyframes progress {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

/* Esconde o scroll durante o preloader */
body.loading {
    overflow: hidden;
}

/* Barra de Informações de Contato */
.contact-info-bar {
    background: #fff;
    padding: 2rem 0;
    border-bottom: 1px solid #edf2f7;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-info-item .icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #20828e;
    background: #f8fafc;
}

.contact-info-item .info h4 {
    color: #20828e;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.contact-info-item .info a {
    color: #64748b;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.contact-info-item .info a:hover {
    color: #20828e;
}

.contact-info-item.social .social-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-info-item.social .social-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-info-item.social .social-links i {
    font-size: 1.2rem;
    color: #20828e;
}

/* Responsivo */
@media (max-width: 768px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info-item {
        justify-content: center;
    }
}

/* Animação de Digitação */
.typing-text {
    display: inline-block;
    overflow: hidden;
    border-right: 2px solid #20828e;
    white-space: nowrap;
    margin: 0;
    animation: 
        typing 3.5s steps(40, end),
        blink-caret 0.75s step-end infinite;
    animation-fill-mode: forwards;
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: #20828e }
}

/* Ajuste para o layout */
.hero-content h1 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

/* Responsivo */
@media (max-width: 768px) {
    .typing-text {
        font-size: 1.8rem;
    }
}

@keyframes floatAndScale {
    0% {
        transform: translateY(0) scale(1);
    }
    25% {
        transform: translateY(-15px) scale(1.02) rotate(1deg);
    }
    50% {
        transform: translateY(0) scale(1) rotate(0deg);
    }
    75% {
        transform: translateY(-10px) scale(1.01) rotate(-1deg);
    }
    100% {
        transform: translateY(0) scale(1) rotate(0deg);
    }
}

/* Card Onde Estamos */
.location-card {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    padding: 0.8rem 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    z-index: 10;
    border: 1px solid rgba(32, 130, 142, 0.1);
}

.location-card h2 {
    color: #20828e;
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0;
    text-align: center;
    position: relative;
    letter-spacing: 0.5px;
}

.location-card h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: #06d6ff;
    border-radius: 2px;
}

/* Ajuste do container do mapa para o card */
.footer-map {
    position: relative;
}

/* Responsivo para Hero Section */
@media (max-width: 1024px) {
    .hero {
        padding: 180px 0 60px;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 150px 0 70px;
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-content {
        order: 1;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .hero-image {
        order: 0;
    }

    .hero-image img {
        width: auto;
        max-width: 90%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .btn-secondary {
        margin-left: 0;
    }
}
