/* ============================================
   BRACEL AUDITÓRIO - STYLESHEET PRINCIPAL
   Design: Moderno, Corporativo e Elegante
   Cores: Laranja #F58229, Verde #173214, Preto #303030
   ============================================ */

/* ========== RESET E CONFIGURAÇÕES GLOBAIS ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    background-color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ========== VARIÁVEIS DE COR ========== */
:root {
    --primary-color: #F58229;
    --primary-dark: #d4611a;
    --color-dark: #303030;
    --color-verde: #173214;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-gray: #f0f0f0;
    --border-color: #e0e0e0;
    --white: #F7F7F7;
    --shadow-light: 0 4px 15px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 25px rgba(0, 0, 0, 0.12);
    --shadow-strong: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* ========== Container Padrão ========== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 90px;
}

/* ========== HEADER / NAVEGAÇÃO ========== */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: var(--primary-color);
    backdrop-filter: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: var(--shadow-light);
}

.header.scrolled {
    background: var(--primary-color);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: var(--shadow-light);
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    font-weight: 400;
    font-size: 1.8rem;
    letter-spacing: -0.5px;
}

.logo-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transform: translateX(115px) translateY(-4px);
}

.logo-image {
    height: 315px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

.logo-text {
    color: var(--white);
    transition: color 0.3s ease;
}

.header.scrolled .logo-text {
    color: var(--white);
}

/* Menu Desktop */
.menu-desktop {
    display: flex;
}

.menu-list {
    display: flex;
    list-style: none;
    gap: 0;
}

.menu-link {
    display: inline-block;
    padding: 0.6rem 1.1rem;
    color: var(--white);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
}

.menu-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    background: var(--white);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.menu-link:hover::after {
    width: 60%;
}

.header.scrolled .menu-link {
    color: var(--white);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    z-index: 1001;
}

.bar {
    width: 28px;
    height: 3px;
    background: var(--white);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Menu Mobile */
.menu-mobile {
    position: fixed;
    top: 110px;
    left: -100%;
    width: 100%;
    background: var(--primary-color);
    padding: 2rem;
    transition: left 0.3s ease;
    z-index: 999;
    max-height: calc(100vh - 110px);
    overflow-y: auto;
}

.menu-mobile.active {
    left: 0;
}

.menu-mobile-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.menu-mobile-link {
    display: block;
    padding: 1rem 0;
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.menu-mobile-link:hover {
    padding-left: 1rem;
    background: rgba(255, 255, 255, 0.1);
}

/* ========== SEÇÃO HERO ========== */
.hero {
    position: relative;
    min-height: 75vh;
    overflow: hidden;
    margin-top: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(20, 20, 20, 0.5);
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    word-spacing: 2px;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 300;
}

/* ========== HERO CAROUSEL ========== */
.hero-carousel {
    position: relative;
    width: 100%;
    min-height: 75vh;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 75vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.8s ease;
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.hero-slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    width: 100%;
    padding: 0 5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.hero-prev,
.hero-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.3);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 52px;
    height: 52px;
    font-size: 2.2rem;
    cursor: pointer;
    transition: background 0.2s;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.hero-prev { left: 1.5rem; }
.hero-next { right: 1.5rem; }

.hero-prev:hover,
.hero-next:hover {
    background: rgba(0,0,0,0.65);
}

.hero-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.6rem;
    z-index: 10;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.45);
    cursor: pointer;
    transition: background 0.2s;
    border: none;
}

.hero-dot.active {
    background: #fff;
}

/* ========== BOTÕES ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-align: center;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

/* Botão Primário */
.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(221, 109, 4, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(221, 109, 4, 0.4);
}

/* Botão Secundário */
.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
    transform: translateY(-2px);
}

/* Botão WhatsApp */
.btn-whatsapp {
    background: #25d366;
    border: 2px solid #25d366;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #20ba5a;
    border-color: #20ba5a;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

/* Botão Grande */
.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
    border-radius: 50px;
}

/* Botão WhatsApp Mobile (visível apenas no mobile) */
.btn-mobile-whatsapp {
    display: none;
}

/* Imagem Complementar Hero */
.hero-image-box {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
    height: 500px;
}

.hero-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hero-image-box:hover .hero-card-image {
    transform: scale(1.05);
}

/* ========== ANIMAÇÕES ========== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDelay {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out;
}

.animate-fade-in-delay {
    animation: fadeInDelay 0.8s ease-out 0.2s both;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== SEÇÃO SOBRE ========== */
.about {
    padding: 3.5rem 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--bg-light) 100%);
}

.section-header {
    text-align: left;
    margin-bottom: 2.5rem;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: 0;
    margin-right: 0;
}

.title-underline {
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--primary-color));
    margin: 0;
    border-radius: 2px;
}

.about-content {
    text-align: left;
    max-width: 100%;
    margin: 0;
}

.about-content .btn {
    display: block;
    width: fit-content;
    margin: 0 auto;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

/* ========== SEÇÃO ESPECIFICAÇÕES ========== */
.specs {
    padding: 3.5rem 0;
    background: var(--white);
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.spec-card {
    background: transparent;
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: default;
}

.spec-card:hover {
    transform: none;
    box-shadow: none;
    background: transparent;
    border-color: transparent;
}

.spec-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70px;
}

.spec-icon img {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

/* Botão Verde */
.btn-verde {
    background-color: var(--color-verde);
    color: var(--white);
    border-radius: 50px;
    border: none;
    padding: 0.9rem 2.5rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-verde:hover {
    background-color: #0f200c;
    color: var(--white);
    transform: translateY(-2px);
}

.spec-text {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.5;
}

.specs-button-container {
    text-align: center;
}

/* ========== SEÇÃO DESTAQUES ========== */
.highlights {
    padding: 3rem 0 1.25rem;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 100%);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.highlight-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: left;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.highlight-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-verde);
    margin-bottom: 0.75rem;
}

.highlight-text {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    font-weight: 400;
}

/* ========== SEÇÃO GALERIA ========== */
.gallery {
    padding: 1.25rem 0 2rem;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 100%);
}

.highlights .section-header,
.gallery .section-header,
.strategic-location .section-header {
    text-align: left;
}

.gallery .section-title,
.strategic-location .section-title {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0;
}

.gallery-carousel {
    position: relative;
    width: 100%;
    max-width: 960px;
    margin: 1.25rem auto 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
}

.gallery-slide {
    display: none;
}

.gallery-slide.active {
    display: block;
}

.gallery-slide img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
}

.gallery-prev,
.gallery-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.35);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 52px;
    height: 52px;
    font-size: 2.2rem;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.gallery-prev { left: 1rem; }
.gallery-next { right: 1rem; }

.gallery-prev:hover,
.gallery-next:hover {
    background: rgba(245, 130, 41, 0.85);
}

.gallery-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.gallery-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background 0.2s;
    border: none;
}

.gallery-dot.active {
    background: #fff;
}

.gallery-counter {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0,0,0,0.45);
    color: #fff;
    font-size: 0.85rem;
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    z-index: 10;
}

/* ========== SEÇÃO LOCALIZAÇÃO ESTRATÉGICA ========== */
.strategic-location {
    padding: 1rem 0 3rem;
    background: var(--white);
}

.location-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin: 0.75rem 0 1.25rem;
    font-weight: 400;
    text-align: left;
    max-width: 860px;
}

.location-media {
    display: block;
    width: 100%;
}

.location-details {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    margin-top: 0.5rem;
}

.detail-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 1rem;
}

.detail-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.detail-item strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-size: 1.05rem;
}

.detail-item p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}

.detail-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.detail-item a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.location-map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    margin-bottom: 2rem;
}

.gmap {
    width: 100%;
    height: 450px;
    border: 0;
    display: block;
}

.location-building {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    height: 320px;
}

.location-building-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ========== SEÇÃO CONTATO ========== */
.contact {
    padding: 2rem 0 3rem;
    background: #2a2a2a;
}

.contact-title {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.contact-wrapper {
    display: block;
}

.contact-form {
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    background: rgba(255,255,255,0.07);
    color: #fff;
    transition: border-color 0.3s ease;
    outline: none;
    box-sizing: border-box;
}

.form-input::placeholder {
    color: rgba(255,255,255,0.5);
}

.form-input:focus {
    border-color: var(--primary-color);
    background: rgba(255,255,255,0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    display: inline-block;
    width: auto;
    margin: 0.5rem 0 0;
}

.contact-info {
    display: none;
}

.contact-note {
    background: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
    padding: 1rem;
}

.contact-note p {
    color: var(--text-light);
    font-size: 0.98rem;
    line-height: 1.6;
}

.contact-info-item {
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
}

.contact-info-item.compact {
    background: var(--bg-light);
    border-radius: 8px;
    padding: 0.75rem;
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    background: var(--primary-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--white);
    flex-shrink: 0;
}

.contact-info-item h4 {
    margin-bottom: 0.2rem;
    color: var(--text-dark);
    font-size: 1rem;
}

.contact-info-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.4;
}

.contact-info-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-item a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* ========== RODAPÉ ========== */
.footer {
    background: var(--white);
    color: var(--color-dark);
    padding: 2rem 0;
    margin-top: 0;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
    margin-bottom: 0;
    align-items: center;
}

.footer-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.footer-section:first-child {
    align-items: flex-start;
    text-align: left;
}

.footer-section:nth-child(2) {
    align-items: center;
    text-align: center;
}

.footer-section:nth-child(2) .footer-links {
    align-items: center;
}

.footer-logo-image {
    height: 100px;
    width: auto;
    object-fit: contain;
    margin-bottom: 0;
    display: block;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer-copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    margin-top: 0.5rem;
}

.footer-title {
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    align-items: flex-start;
}

.footer-links a {
    color: var(--text-dark);
    text-decoration: underline;
    transition: color 0.3s ease;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-links i {
    margin-right: 0.5rem;
    color: var(--primary-color);
    font-size: 0.85rem;
}

.footer-links-right {
    text-align: right;
    align-items: flex-end;
}

.footer-links-right li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: flex-end;
}

.footer-links-right i {
    margin-right: 0;
    margin-left: 0.5rem;
}

.footer-social {
    display: flex;
    gap: 0.8rem;
    justify-content: flex-start;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-link:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

.footer-links-right a {
    color: var(--text-dark);
    text-decoration: none;
}

.footer-bottom {
    display: none;
}

/* ========== BOTÃO FLUTUANTE WHATSAPP ========== */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 800;
    animation: float 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    background: #20ba5a;
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* ========== SCROLL EFFECT ========== */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    opacity: 0.7;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* ========== ESTILO PARA SECTIONS COM BACKGROUND ========== */
.specs,
.about,
.gallery,
.location,
.contact {
    position: relative;
}

/* ========== TIPOGRAFIA ADICIONAL ========== */
h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
}

p {
    margin: 0;
    padding: 0;
}

a {
    transition: all 0.3s ease;
}

/* ========== SUAVIZAÇÃO GERAL ========== */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
