/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8fafc;
    overflow-x: hidden;
}

/* Cores da identidade visual */
:root {
    --primary-orange: #FF8C00;
    --primary-black: #1a1a1a;
    --secondary-orange: #FFA500;
    --accent-gold: #FFD700;
    --light-gray: #f8fafc;
    --medium-gray: #e2e8f0;
    --dark-gray: #64748b;
    --white: #ffffff;
    --orange-gradient: linear-gradient(135deg, #FF8C00, #FFA500);
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Header */
.header {
    background: linear-gradient(135deg, var(--primary-black) 0%, #2d2d2d 100%);
    color: var(--white);
    position: relative;
    z-index: 1000;
    box-shadow: var(--shadow-lg);
}

.header-top {
    background: var(--orange-gradient);
    padding: 12px 0;
    font-size: 14px;
    position: relative;
    overflow: hidden;
}

.header-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.header-main {
    background: var(--primary-black);
    padding: 20px 0;
    position: relative;
}

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

.contact-info {
    display: flex;
    gap: 30px;
    align-items: center;
}

.contact-info a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 5px 10px;
    border-radius: 6px;
}

.contact-info a:hover {
    background-color: rgba(255,255,255,0.1);
    transform: translateY(-1px);
}

.social-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-links a {
    color: var(--white);
    text-decoration: none;
    padding: 8px 16px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.social-links a:hover {
    background-color: var(--white);
    color: var(--primary-orange);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.header-main .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    height: 70px;
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.nav-links {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    position: relative;
    padding: 10px 0;
    transition: all 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--orange-gradient);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--primary-orange);
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--orange-gradient);
    color: var(--primary-black);
    padding: 12px 24px;
    border: none;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(26,26,26,0.8) 0%, rgba(0,0,0,0.6) 100%), 
                url('../images/casa2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(255,140,0,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

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

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 24px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
    font-weight: 800;
    background: linear-gradient(135deg, var(--white) 0%, var(--primary-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero p {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    margin-bottom: 50px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

/* Formulário de busca */
.search-form {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    margin-top: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid rgba(255,255,255,0.2);
    animation: slideInUp 0.8s ease-out 0.3s both;
}

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

.search-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    position: relative;
}

.form-group label {
    color: var(--primary-black);
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select {
    padding: 16px 20px;
    border: 2px solid var(--medium-gray);
    border-radius: 12px;
    font-size: 16px;
    color: var(--primary-black);
    transition: all 0.3s ease;
    background-color: var(--white);
    font-weight: 500;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(255,140,0,0.1);
    transform: translateY(-2px);
}

.search-btn {
    background: var(--orange-gradient);
    color: var(--primary-black);
    padding: 18px 50px;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.search-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.search-btn:hover::before {
    left: 100%;
}

.search-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

/* Seção de Destaques */
.destaques {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
    position: relative;
}

.destaques::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, rgba(255,140,0,0.05), transparent);
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--primary-black);
    margin-bottom: 60px;
    position: relative;
    font-weight: 800;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 5px;
    background: var(--orange-gradient);
    border-radius: 3px;
}

.imoveis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.imovel-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid rgba(255,140,0,0.1);
}

.imovel-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,140,0,0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    border-radius: 20px;
}

.imovel-card:hover::before {
    opacity: 1;
}

.imovel-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.imovel-image {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
    background: linear-gradient(135deg, var(--medium-gray), var(--light-gray));
}

.imovel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.imovel-card:hover .imovel-image img {
    transform: scale(1.1);
}

.tipo-negocio {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--orange-gradient);
    color: var(--primary-black);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-md);
    z-index: 10;
}

.preco {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(26,26,26,0.9);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 18px;
    box-shadow: var(--shadow-lg);
    z-index: 10;
}

.imovel-info {
    padding: 30px;
}

.imovel-titulo {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 12px;
    line-height: 1.3;
}

.imovel-localizacao {
    color: var(--dark-gray);
    margin-bottom: 20px;
    font-size: 15px;
    font-weight: 500;
}

.imovel-caracteristicas {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.caracteristica {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--dark-gray);
    font-weight: 600;
    padding: 8px 12px;
    background-color: var(--light-gray);
    border-radius: 20px;
    border: 1px solid var(--medium-gray);
}

.caracteristica span:first-child {
    font-size: 16px;
}

.btn-detalhes {
    background: var(--orange-gradient);
    color: var(--primary-black);
    padding: 14px 30px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.btn-detalhes::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn-detalhes:hover::before {
    left: 100%;
}

.btn-detalhes:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

/* Carrossel de imagens */
.imovel-image-carousel {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
    background: linear-gradient(135deg, var(--medium-gray), var(--light-gray));
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 1;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 2;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}

.imovel-card:hover .carousel-slide.active img {
    transform: scale(1.1);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,140,0,0.9);
    backdrop-filter: blur(10px);
    color: var(--primary-black);
    border: 2px solid var(--primary-orange);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 15;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    box-shadow: var(--shadow-lg);
}

.imovel-card:hover .carousel-btn {
    opacity: 1;
}

.carousel-btn:hover {
    background: var(--primary-orange);
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-xl);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 15;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(10px);
    padding: 10px 16px;
    border-radius: 25px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.indicator.active {
    background: var(--primary-orange);
    border-color: var(--white);
    transform: scale(1.3);
}

.indicator:hover {
    background: var(--white);
    transform: scale(1.2);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-black) 0%, #2d2d2d 100%);
    color: var(--white);
    padding: 80px 0 30px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--orange-gradient);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: var(--primary-orange);
    margin-bottom: 25px;
    font-size: 1.3rem;
    font-weight: 700;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--orange-gradient);
    border-radius: 2px;
}

.footer-section p,
.footer-section a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    line-height: 1.8;
    transition: all 0.3s ease;
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
}

.footer-section a:hover {
    color: var(--primary-orange);
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Responsividade */
@media (max-width: 768px) {
    .header-top {
        display: none;
    }
    
    .header-main .container {
        justify-content: center;
    }
    
    .nav-links {
        display: none;
    }
    
    .logo img {
        height: 60px;
    }
    
    .hero {
        min-height: 80vh;
        background-attachment: scroll;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .search-form {
        padding: 25px;
        margin: 30px 15px;
        border-radius: 15px;
    }
    
    .search-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .form-group input,
    .form-group select {
        padding: 14px 16px;
    }
    
    .search-btn {
        padding: 16px 40px;
        font-size: 16px;
    }
    
    .imoveis-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
    }
    
    .imovel-card {
        border-radius: 15px;
    }
    
    .imovel-image,
    .imovel-image-carousel {
        height: 250px;
        border-radius: 15px 15px 0 0;
    }
    
    .imovel-info {
        padding: 25px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .destaques {
        padding: 60px 0;
    }
    
    .section-title {
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .search-form {
        padding: 20px;
        margin: 20px 10px;
    }
    
    .imovel-info {
        padding: 20px;
    }
    
    .imovel-caracteristicas {
        gap: 10px;
    }
    
    .caracteristica {
        font-size: 12px;
        padding: 6px 10px;
    }
}

/* Animações adicionais */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.btn-primary:focus,
.search-btn:focus,
.btn-detalhes:focus {
    animation: pulse 0.5s ease-in-out;
}

/* Scroll suave para elementos que entram na tela */
.imovel-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.imovel-card:nth-child(1) { animation-delay: 0.1s; }
.imovel-card:nth-child(2) { animation-delay: 0.2s; }
.imovel-card:nth-child(3) { animation-delay: 0.3s; }
.imovel-card:nth-child(4) { animation-delay: 0.4s; }
.imovel-card:nth-child(5) { animation-delay: 0.5s; }
.imovel-card:nth-child(6) { animation-delay: 0.6s; }

/* Melhorias para acessibilidade */
.btn-primary:focus,
.search-btn:focus,
.btn-detalhes:focus,
.carousel-btn:focus,
.indicator:focus {
    outline: 3px solid var(--primary-orange);
    outline-offset: 2px;
}

/* Efeitos de hover mais suaves */
* {
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}

/* Loading states */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid var(--primary-orange);
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}



/* Estilos para os botões de ação dos imóveis */
.imovel-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 20px;
}

.btn-detalhes {
    background: var(--orange-gradient);
    color: var(--primary-black);
    padding: 14px 24px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
    flex: 1;
    text-align: center;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.btn-detalhes::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn-detalhes:hover::before {
    left: 100%;
}

.btn-detalhes:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 14px;
    border: none;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
    height: 50px;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.btn-whatsapp::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-whatsapp:hover::before {
    left: 100%;
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #128C7E, #0d6b56);
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-xl);
}

.btn-whatsapp svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

/* Tooltip para o botão WhatsApp */
.btn-whatsapp::after {
    content: 'Contato via WhatsApp';
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 1000;
}

.btn-whatsapp:hover::after {
    opacity: 1;
}

/* Responsividade para botões */
@media (max-width: 480px) {
    .imovel-actions {
        gap: 8px;
    }
    
    .btn-detalhes {
        padding: 12px 20px;
        font-size: 12px;
    }
    
    .btn-whatsapp {
        min-width: 45px;
        height: 45px;
        padding: 12px;
    }
    
    .btn-whatsapp svg {
        width: 20px;
        height: 20px;
    }
}



/* Estilos para as abas de Fotos e Vídeo */
.tab-navigation {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 20px;
    border-bottom: 2px solid #eee;
}

.tab-button {
    background: none;
    border: none;
    padding: 10px 20px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    color: #555;
    transition: all 0.3s ease;
    position: relative;
    outline: none;
}

.tab-button:hover {
    color: #FFD700;
}

.tab-button.active {
    color: #FFD700;
}

.tab-button.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #FFD700;
}

.tab-content {
    padding-top: 20px;
}

/* Estilos para o container do vídeo */
.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}




/* Estilos para a funcionalidade de vídeo */
.tab-navigation {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.tab-button {
    background: #f0f0f0;
    border: 1px solid #ddd;
    padding: 10px 20px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.tab-button:first-child {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.tab-button:last-child {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8m;
}

.tab-button.active {
    background: var(--primary-orange);
    color: white;
    border-color: var(--primary-orange);
}

.video-container {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    background-color: black;
}

.video-container iframe {
    width: 100%;
    height: 100%;
}


