:root {
    --white: #ffffff;
    --gold: #AE8625;
    --light-gold: #d4b15c;
    --dark-gold: #8a6c1e;
    --light-gray: #f9f9f9;
    --medium-gray: #e8e8e8;
    --dark-gray: #333333;
    --text-gray: #555555;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
    --gradient: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
    --shadow-strong: 0 10px 30px rgba(0, 0, 0, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark-gray);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}
/* hig */
          .highlight {
            color: var(--gold);
            font-weight: 600;
            position: relative;
            display: inline-block;
        }
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: var(--white);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    width: 150px;
    transition: var(--transition);
}

.logo:hover img {
    transform: scale(1.05);
}

.online-status {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(174, 134, 37, 0.1);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dark-gray);
}

.online-dot {
    width: 12px;
    height: 12px;
    background-color: #2ecc71;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

nav ul {
    display: flex;
    list-style: none;
    align-items: center;
}

nav ul li {
    margin-left: 35px;
}

nav ul li a {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    font-size: 16px;
    padding: 5px 0;
    display: block;
}

nav ul li a:hover {
    color: var(--gold);
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--gold);
    transition: width 0.3s;
}

nav ul li a:hover::after {
    width: 100%;
}

.mobile-menu {
    display: none;
    font-size: 24px;
    margin-right: 20px;
    cursor: pointer;
    color: var(--dark-gray);
    background: none;
    border: none;
}

/* Hero Section */
.hero {
    padding: 180px 0 120px;
    background: 
        linear-gradient(rgba(255, 255, 255, 0.85), rgba(249, 249, 249, 0.9)),
        url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') no-repeat center center/cover;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(174, 134, 37, 0.05);
    top: -150px;
    left: -150px;
}

.hero::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(174, 134, 37, 0.05);
    bottom: -100px;
    right: -100px;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.profile-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--gold);
    margin-bottom: 30px;
    box-shadow: var(--shadow-strong);
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    max-width: 800px;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.5s;
}

.hero-title {
    font-size: 2.8rem;
    margin-bottom: 15px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--dark-gray);
    position: relative;
}

.hero-title span {
    color: var(--gold);
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: var(--text-gray);
    font-weight: 400;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards 0.8s;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: var(--text-gray);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards 1s;
}

.highlight {
    color: var(--gold);
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--gold);
    bottom: -2px;
    left: 0;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.highlight:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Cards Section */
.cards-section {
    padding: 80px 0;
    background-color: var(--light-gray);
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.8rem;
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--gold);
}

.section-title p {
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.6;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

/* CORREÇÃO DOS CARDS - Alinhamento perfeito */
.card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--gold);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.card-image {
    height: 350px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.card:hover .card-image img {
    transform: scale(1.1);
}

.card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    height: 100%;
}

.card-content h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--dark-gray);
    position: relative;
    display: inline-block;
    font-weight: 700;
    line-height: 1.3;
}

.card-content h3::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--gold);
}

.card-content p {
    color: var(--text-gray);
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.6;
    position: relative;
    padding-left: 15px;
    flex-grow: 1;
}

.card-content p::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 1.5rem;
    line-height: 1;
}

.highlight-text {
    background: linear-gradient(to right, var(--gold) 0%, var(--light-gold) 50%, var(--gold) 100%);
    background-size: 200% auto;
    color: var(--dark-gray);
    padding: 0 5px;
    border-radius: 3px;
    animation: shine 3s linear infinite;
    display: inline;
    font-weight: 600;
}

/* CORREÇÃO DOS BOTÕES - Alinhamento perfeito */
.card-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--gradient);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    border: none;
    cursor: pointer;
    width: auto;
    min-width: 140px;
    margin-top: auto;
    align-self: flex-start;
}

.card-cta::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: 0.5s;
}

.card-cta:hover {
    transform: translateX(5px);
}

.card-cta:hover::before {
    left: 100%;
}

.card-cta i {
    transition: var(--transition);
}

.card-cta:hover i {
    transform: translateX(3px);
}

/* Footer */
.footer-info02 {
    background: linear-gradient(135deg, #0c0c0c 0%, #1a1a1a 100%);
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-bottom02 {
    background: rgb(0, 0, 0);
    margin-top: 50px;
    padding: 25px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright02 {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.5;
}

.developer-link02 {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
}

.developer-link02:hover {
    color: var(--light-gold);
    text-decoration: underline;
}

.footer-social02 {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    justify-content: center;
    align-items: center;
}

.social-link02 {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition);
    font-size: 18px;
}

.social-link02:hover {
    background: var(--gold);
    color: var(--dark-gray);
    transform: translateY(-3px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(174, 134, 37, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(174, 134, 37, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(174, 134, 37, 0);
    }
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.slide-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-content02 {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-map02 {
        height: 250px;
    }

    .hero-title {
        font-size: 2.4rem;
    }
    
    .cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        padding: 20px;
        align-items: flex-start;
    }
    
    .logo {
        margin-left: 20px;
    }
    
    nav ul.show {
        display: flex;
    }

    nav ul li {
        margin: 12px 0;
        width: 100%;
    }

    nav ul li a {
        padding: 10px 0;
        display: block;
        width: 100%;
    }

    .mobile-menu {
        display: block;
    }

    .hero {
        padding: 150px 0 80px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .footer02 {
        padding: 40px 0 0;
    }
    
    .footer-content02 {
        gap: 30px;
    }
    
    .footer-info02 {
        gap: 25px;
    }
    
    .footer-logo02 img {
        width: 150px;
    }
    
    .footer-contact02 h3,
    .footer-hours02 h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .footer-map02 {
        height: 200px;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .card-cta {
        align-self: center;
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .footer02 {
        padding: 30px 0 0;
    }
    
    .footer-content02 {
        padding: 0 15px;
    }
    
    .footer-logo02 img {
        width: 130px;
    }
    
    .contact-item02 {
        font-size: 14px;
    }
    
    .contact-item02 i {
        font-size: 16px;
        width: 25px;
    }
    
    .footer-bottom02 {
        padding: 20px 0;
    }
    
    .footer-copyright02 {
        font-size: 13px;
    }
    
    .social-link02 {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }
    
    .card-content {
        padding: 20px;
    }
    
    .card-content h3 {
        font-size: 1.4rem;
    }
    
    .section-title h2 {
        font-size: 1.6rem;
    }
    
    .card-cta {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}