@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;600;700&display=swap');

:root {
    --primary: #C5A070;
    --primary-light: #D4B483;
    --primary-dark: #A37E4D;
    --secondary: #0D1B3E;
    --accent-green: #2ecc71;
    --text: #333333;
    --text-light: #666666;
    --bg-light: #FDFDFD;
    --bg-dark: #0A1633;
    --white: #FFFFFF;
    --glass: rgba(255, 255, 255, 0.7);
    --glass-dark: rgba(10, 22, 51, 0.7);
    --shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.mobile-only {
    display: none;
}

.about-content {
    grid-template-columns: 1.2fr 1fr;
}

.specialty-h3 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
    }
}

.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--accent-green);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
    text-transform: none;
    font-size: 1rem;
    padding: 15px 40px;
}

.btn-primary:hover {
    background-color: #27ae60;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 204, 113, 0.4);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition);
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

header.scrolled {
    padding: 12px 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

@media (max-width: 768px) {
    .logo img {
        height: 40px;
    }
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links li a {
    color: #000000;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: var(--transition);
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-links li a:hover {
    color: var(--primary);
}

.nav-links li a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #000000;
}

/* Sections */
section {
    padding: 100px 0;
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--secondary);
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 950px;
    background: linear-gradient(90deg, #0A1633 0%, #0A1633 45%, rgba(10, 22, 51, 0.6) 70%, transparent 100%), url('../img/DT-2.webp');
    background-size: cover;
    background-position: right 25%;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-start;
    overflow: hidden;
    position: relative;
    padding-top: 180px;
}

.hero-grid {
    display: flex;
    align-items: center;
    width: 100%;
}

.hero-image {
    display: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(10, 22, 51, 0.8) 0%, transparent 30%);
    pointer-events: none;
}

.hero .container {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    color: var(--white);
    padding: 40px 20px;
    z-index: 20;
}

.hero-logo-box {
    margin-bottom: 40px;
    display: block;
}

.hero-logo-box img {
    max-width: 320px;
    margin: 0 auto;
    filter: drop-shadow(0 0 15px rgba(197, 160, 112, 0.3));
}

.hero-subtitle {
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 1.4;
    margin-bottom: 40px;
    opacity: 0.95;
    color: var(--white);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.btn-hero-gold {
    background: linear-gradient(135deg, #967448 0%, #634B2B 100%);
    color: var(--white);
    padding: 18px 45px;
    font-size: 1.25rem;
    font-weight: 500;
    border-radius: 5px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    font-family: 'Playfair Display', serif;
    transition: var(--transition);
    text-transform: none;
    letter-spacing: 0.5px;
}

.btn-hero-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    filter: brightness(1.1);
}

.hero-info-box {
    background: rgba(15, 15, 15, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 35px;
    text-align: left;
    max-width: 800px;
    margin: 40px auto 0;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero-info-box strong {
    color: var(--white);
    display: block;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Stats Section */
.stats {
    background-color: var(--white);
    margin-top: -50px;
    padding: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    background-color: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat-item p {
    color: var(--text-light);
    font-weight: 500;
}

/* Specialty Section */
.specialty {
    background-color: var(--bg-light);
}

.specialty-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.specialty-image img {
    border-radius: 20px;
    box-shadow: 30px 30px 0 rgba(197, 160, 112, 0.2);
    transition: var(--transition);
    filter: grayscale(10%);
}

.specialty-image:hover img {
    transform: scale(1.02);
    box-shadow: 15px 15px 0 var(--primary);
    filter: grayscale(0%);
}

.specialty-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.specialty-options {
    margin-top: 30px;
}

.option-card {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
    border-left: 5px solid var(--primary);
    transition: var(--transition);
}

.option-card:hover {
    transform: translateX(10px);
}

.option-card h4 {
    color: var(--primary);
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
}

/* Team Section */
.team {
    background-color: var(--secondary);
    color: var(--white);
}

.team .section-header h2 {
    color: var(--white);
}

.team-carousel {
    padding: 20px 0 40px;
}

.team-carousel .owl-stage {
    display: flex !important;
}

.team-carousel .owl-item {
    display: flex !important;
    height: auto !important;
}

.team-card {
    width: 100%;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    height: 100%;
}

.team-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-10px);
}

.team-card img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    transition: var(--transition);
}

.team-card:hover img {
    transform: scale(1.1);
}

.team-info {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.team-info h4 {
    font-size: 1.25rem;
    margin-bottom: 5px;
    color: var(--primary-light);
}

.team-info p {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Owl Carousel Customization */
.team-carousel .owl-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.team-carousel .owl-nav button.owl-prev,
.team-carousel .owl-nav button.owl-next {
    width: 50px;
    height: 50px;
    border-radius: 50% !important;
    background: var(--white) !important;
    color: var(--secondary) !important;
    font-size: 1.2rem !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
    transition: var(--transition) !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.team-carousel .owl-nav button.owl-prev:hover,
.team-carousel .owl-nav button.owl-next:hover {
    background: var(--primary) !important;
    color: var(--white) !important;
    transform: translateY(-3px);
}

.team-carousel .owl-dots {
    text-align: center;
    margin-top: 20px;
}

.team-carousel .owl-dot span {
    width: 10px !important;
    height: 10px !important;
    background: rgba(255, 255, 255, 0.3) !important;
    transition: var(--transition) !important;
}

.team-carousel .owl-dot.active span {
    background: var(--primary) !important;
    width: 30px !important;
}

/* Video Testimonials */
.video-testimonials {
    background-color: var(--bg-light);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.video-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--white);
    transition: var(--transition);
}

.video-card:hover {
    transform: translateY(-10px);
}

.video-card iframe {
    display: block;
}

/* Testimonials */
.testimonials {
    background-color: var(--white);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    padding: 30px;
    background: var(--bg-light);
    border-radius: 15px;
    box-shadow: var(--shadow);
    position: relative;
    display: flex;
    flex-direction: column;
}

.testimonial-card i {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 20px;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
    padding-top: 20px;
}

.testimonial-footer img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

/* FAQ */
.faq {
    background-color: var(--bg-light);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-question {
    background: var(--white);
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-answer {
    background: var(--white);
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
    padding: 0 25px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 25px 25px;
}

.faq-item.active .faq-question span {
    transform: rotate(45deg);
}

/* Contact */
.contact {
    background-color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item i {
    color: var(--primary);
    font-size: 1.5rem;
    padding-top: 5px;
}

.map {
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map iframe {
    width: 100%;
    height: 100%;
}

/* Footer */
.main-footer {
    background-color: #0A1633;
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}

.footer-logo {
    height: 120px;
    width: auto;
}

.footer-col h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    font-weight: 400;
}

.footer-info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    align-items: flex-start;
}

.footer-info-item i {
    color: var(--primary);
    font-size: 1.2rem;
    margin-top: 5px;
}

.footer-info-item p {
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.9;
}

.footer-social-col {
    display: flex;
    justify-content: flex-end;
}

.instagram-link {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--white);
    font-size: 1.8rem;
    font-family: 'Playfair Display', serif;
    transition: var(--transition);
}

.instagram-link i {
    color: var(--primary);
    font-size: 2.2rem;
}

.instagram-link:hover {
    color: var(--primary);
    transform: translateX(-5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.5;
    letter-spacing: 1px;
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.btn-primary {
    animation: pulse 3s infinite ease-in-out;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .hero {
        height: 140dvh;
        /* Aumentado de 100dvh para 120dvh para dar mais espaço */
        min-height: 700px;
        padding: 0;
        background: linear-gradient(180deg, rgba(10, 22, 51, 0) 0%, rgba(10, 22, 51, 0.3) 50%, rgba(10, 22, 51, 0.9) 85%, rgba(10, 22, 51, 1) 100%), url('../img/MB-2.webp');
        background-size: cover;
        background-position: center 100%;
        display: flex;
        align-items: flex-end;
        justify-content: center;
    }

    .hero .container {
        height: 100%;
    }

    .hero-grid {
        height: 100%;
        flex-direction: column;
        justify-content: flex-end;
        /* Garante que o texto e o logo fiquem na parte inferior */
        display: flex !important;
        padding-bottom: 10px;
        /* Pequeno respiro na base */
    }

    .hero-image {
        display: none !important;
    }

    .hero-content {
        height: auto;
        /* Deixa o conteúdo ocupar apenas o espaço necessário na base */
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: 0 20px 10px;
        max-width: 100%;
    }

    .hero-logo-box {
        display: block !important;
        /* Reativa o logo apenas no mobile */
        margin-bottom: 20px;
        margin-top: 0;
        text-align: center;
    }

    .hero-logo-box img {
        max-width: 140px;
        filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.3));
        margin: 0 auto;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 20px;
        line-height: 1.5;
        font-weight: 400;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    }

    .hero-btns {
        margin-bottom: 0;
    }

    .btn-hero-gold {
        padding: 12px 25px;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
    }

    .hero-info-box {
        display: none;
    }

    .hero-logo-box img {
        max-width: 300px;
    }

    .hero-subtitle {
        font-size: 1.25rem;
        margin-bottom: 30px;
    }

    .btn-hero-gold {
        padding: 15px 30px;
        font-size: 1.1rem;
    }

    .hero-info-box {
        padding: 20px;
        font-size: 0.95rem;
        margin-top: 30px;
    }

    .specialty-content,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .specialty-image img {
        box-shadow: 15px 15px 0 rgba(197, 160, 112, 0.2);
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 30px 20px;
    }

    .stat-item h3 {
        font-size: 2rem;
    }

    .video-grid {
        grid-template-columns: 1fr;
    }

    .video-card {
        max-width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .footer-info-item {
        justify-content: center;
    }

    .footer-social-col {
        justify-content: center;
    }

    .footer-logo {
        height: 80px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }

    header {
        padding: 12px 0;
    }

    header.scrolled {
        padding: 8px 0;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(15px);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 25px;
        transition: var(--transition);
        z-index: 999;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li a {
        font-size: 1.4rem;
        font-family: 'Playfair Display', serif;
    }

    .mobile-menu-btn {
        display: block;
        z-index: 1000;
        font-size: 1.5rem;
    }

    header>.container>nav>.btn-primary {
        display: none;
    }

    .mobile-only {
        display: block;
    }

    .mobile-only .btn-primary {
        display: inline-block;
        padding: 12px 30px;
        margin-top: 10px;
        animation: none;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        gap: 30px;
    }

    .map {
        height: 300px;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
}

@media (max-width: 480px) {
    .hero-logo-box img {
        max-width: 240px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }
}