/* ===== VARIABLES ===== */
:root {
    --primary-color: #c9a227;
    --primary-dark: #a88620;
    --secondary-color: #1a1a2e;
    --accent-color: #d4380d;
    --text-color: #333333;
    --text-light: #666666;
    --text-white: #ffffff;
    --bg-dark: #0f0f1a;
    --bg-darker: #0a0a12;
    --bg-light: #f8f9fa;
    --bg-card: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --border-radius: 12px;
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

.section {
    padding: 100px 0;
}

.section__header {
    text-align: center;
    margin-bottom: 60px;
}

.section__subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.section__title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    color: var(--secondary-color);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn--primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--text-white);
    border-color: var(--primary-color);
}

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

.btn--outline {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn--outline:hover {
    background: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-3px);
}

.btn--block {
    width: 100%;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    padding: 20px 0;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(15, 15, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

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

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 28px;
    font-weight: 800;
    color: var(--text-white);
}

.nav__logo-img {
    height: 60px;
    width: auto;
    transition: var(--transition);
}

.header.scrolled .nav__logo-img {
    height: 50px;
}

.nav__logo i {
    color: var(--primary-color);
    font-size: 32px;
}

.nav__list {
    display: flex;
    gap: 40px;
    overflow: visible;
}

.nav__link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: var(--transition);
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav__link:hover,
.nav__link.active {
    color: var(--primary-color);
}

.nav__link:hover::after,
.nav__link.active::after {
    width: 100%;
}

/* Dropdown Menu */
.nav__item--dropdown {
    position: relative;
}

.nav__link--dropdown {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav__link--dropdown i {
    font-size: 10px;
    transition: var(--transition);
}

.nav__item--dropdown:hover .nav__link--dropdown i {
    transform: rotate(180deg);
}

.nav__dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    min-width: 200px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2), 0 2px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 10px 0;
    z-index: 9999;
    list-style: none;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.nav__item--dropdown:hover .nav__dropdown {
    opacity: 1;
    visibility: visible;
    top: calc(100% + 10px);
}

.nav__dropdown::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #ffffff;
}

.nav__dropdown-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: var(--text-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.nav__dropdown-link:hover {
    background: #f5f0e0;
    color: var(--primary-color);
}

.nav__dropdown-link i {
    width: 20px;
    color: var(--primary-color);
}

.nav__toggle,
.nav__close {
    display: none;
    font-size: 24px;
    color: var(--text-white);
    cursor: pointer;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: url('img/fundo.jpeg') center/cover no-repeat;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 15, 26, 0.95) 0%, rgba(26, 26, 46, 0.85) 100%);
}

.hero__content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.hero__subtitle {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease;
}

.hero__title {
    font-size: clamp(40px, 8vw, 72px);
    font-weight: 800;
    color: var(--text-white);
    line-height: 1.1;
    margin-bottom: 25px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero__title span {
    color: var(--primary-color);
}

.hero__description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero__buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.hero__scroll-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-white);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: bounce 2s infinite;
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* ===== ABOUT ===== */
.about__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about__image-wrapper {
    position: relative;
}

.about__image-wrapper img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.about__video-wrapper {
    position: relative;
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.about__video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius);
}

.about__video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius);
}

.about__experience {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    color: var(--text-white);
    box-shadow: var(--shadow-lg);
}

.about__experience-number {
    display: block;
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
}

.about__experience-text {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about__info-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.about__info-description {
    color: var(--text-light);
    margin-bottom: 30px;
}

.about__features {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.about__feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.about__feature i {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--text-white);
    border-radius: 50%;
    font-size: 20px;
    flex-shrink: 0;
}

.about__feature h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.about__feature p {
    font-size: 14px;
    color: var(--text-light);
}

/* ===== STATS ===== */
.stats {
    background: linear-gradient(135deg, var(--secondary-color), var(--bg-dark));
    padding: 80px 0;
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stats__item {
    text-align: center;
    color: var(--text-white);
}

.stats__item i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.stats__number {
    display: block;
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 10px;
}

.stats__text {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
}

/* ===== SERVICES ===== */
.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service__card {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    transform: scaleX(0);
    transition: var(--transition);
}

.service__card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service__card:hover::before {
    transform: scaleX(1);
}

.service__icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.1), rgba(201, 162, 39, 0.05));
    border-radius: 50%;
    margin-bottom: 25px;
}

.service__icon i {
    font-size: 30px;
    color: var(--primary-color);
}

.service__title {
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.service__description {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.service__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    transition: var(--transition);
}

.service__link:hover {
    gap: 15px;
}

/* ===== GALLERY ===== */
.gallery {
    background: var(--bg-darker);
}

.gallery .section__title {
    color: var(--text-white);
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 20px;
}

.gallery__item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
}

.gallery__item--large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
}

.gallery__overlay span {
    color: var(--text-white);
    font-weight: 600;
    transform: translateY(20px);
    transition: var(--transition);
}

.gallery__item:hover img {
    transform: scale(1.1);
}

.gallery__item:hover .gallery__overlay {
    opacity: 1;
}

.gallery__item:hover .gallery__overlay span {
    transform: translateY(0);
}

/* ===== PLANS ===== */
.plans__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: start;
}

.plan__card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    position: relative;
    transition: var(--transition);
}

.plan__card:hover {
    transform: translateY(-10px);
}

.plan__card--featured {
    background: linear-gradient(135deg, var(--secondary-color), var(--bg-dark));
    color: var(--text-white);
    transform: scale(1.05);
    z-index: 1;
}

.plan__card--featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.plan__badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--text-white);
    padding: 8px 25px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plan__header {
    text-align: center;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 30px;
}

.plan__card--featured .plan__header {
    border-color: rgba(255, 255, 255, 0.1);
}

.plan__name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.plan__card--featured .plan__name {
    color: var(--text-white);
}

.plan__price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.plan__currency {
    font-size: 24px;
    font-weight: 600;
}

.plan__amount {
    font-size: 56px;
    font-weight: 800;
    line-height: 1;
    color: var(--primary-color);
}

.plan__period {
    font-size: 16px;
    color: var(--text-light);
}

.plan__card--featured .plan__period {
    color: rgba(255, 255, 255, 0.7);
}

.plan__features {
    margin-bottom: 30px;
}

.plan__features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 15px;
}

.plan__features i {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 162, 39, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    font-size: 12px;
}

.plan__feature--disabled {
    opacity: 0.5;
}

.plan__feature--disabled i {
    background: rgba(0, 0, 0, 0.05);
    color: var(--text-light);
}

.plan__card--featured .plan__features i {
    background: rgba(201, 162, 39, 0.2);
}

/* ===== NOTÍCIAS ===== */
.noticias {
    background: var(--bg-light);
}

.noticias__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

.noticia__card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.noticia__card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.noticia__card--destaque {
    grid-column: span 2;
}

.noticia__card--destaque .noticia__imagem {
    height: 280px;
}

.noticia__imagem {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.noticia__imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.noticia__card:hover .noticia__imagem img {
    transform: scale(1.1);
}

.noticia__categoria {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: var(--text-white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.noticia__categoria--inline {
    position: static;
    display: inline-block;
    margin-bottom: 10px;
}

.noticia__card--sem-imagem {
    grid-column: span 1 !important;
}

.noticia__card--sem-imagem .noticia__imagem {
    display: none !important;
}

.noticia__conteudo {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.noticia__data {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.noticia__data i {
    color: var(--primary-color);
}

.noticia__titulo {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 12px;
    line-height: 1.4;
    transition: var(--transition);
}

.noticia__card:hover .noticia__titulo {
    color: var(--primary-color);
}

.noticia__resumo {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.noticia__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.noticia__link:hover {
    gap: 12px;
}

.noticia__link i {
    transition: var(--transition);
}

@media screen and (max-width: 1024px) {
    .noticias__grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        max-width: 700px;
    }
    
    .noticia__card--destaque {
        grid-column: span 1;
    }
}

@media screen and (max-width: 768px) {
    .noticias__grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .noticia__card--destaque {
        grid-column: span 1;
    }
    
    .noticia__card--destaque .noticia__imagem {
        height: 200px;
    }
}

/* Modal de Notícia */
.noticia-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

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

.noticia-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
}

.noticia-modal__content {
    position: relative;
    background: var(--bg-card);
    border-radius: var(--border-radius);
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.noticia-modal__close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.noticia-modal__close:hover {
    background: var(--primary-color);
    transform: rotate(90deg);
}

.noticia-modal__imagem {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.noticia-modal__imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.noticia-modal__categoria {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--primary-color);
    color: var(--text-white);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.noticia-modal__categoria--inline {
    position: static;
    display: inline-block;
    margin-bottom: 15px;
}

.noticia-modal__body {
    padding: 30px;
}

.noticia-modal__meta {
    display: flex;
    gap: 25px;
    margin-bottom: 20px;
    font-size: 14px;
    color: var(--text-light);
}

.noticia-modal__meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.noticia-modal__meta i {
    color: var(--primary-color);
}

.noticia-modal__titulo {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
    line-height: 1.3;
}

.noticia-modal__conteudo {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
}

.noticia-modal__conteudo p {
    margin-bottom: 15px;
}

@media screen and (max-width: 768px) {
    .noticia-modal__imagem {
        height: 250px;
    }
    
    .noticia-modal__body {
        padding: 20px;
    }
    
    .noticia-modal__titulo {
        font-size: 22px;
    }
    
    .noticia-modal__meta {
        flex-direction: column;
        gap: 10px;
    }
}

/* ===== BOTÃO VER TODAS NOTÍCIAS ===== */
.noticias__ver-todas {
    text-align: center;
    margin-top: 40px;
}

.noticias__btn-todas {
    font-size: 16px;
    padding: 15px 30px;
}

.noticias__btn-todas i {
    margin-right: 10px;
}

/* ===== MODAL TODAS AS NOTÍCIAS ===== */
.todas-noticias-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}

.todas-noticias-modal.active {
    display: flex;
}

.todas-noticias-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.todas-noticias-modal__content {
    position: relative;
    background: var(--bg-light);
    width: 90%;
    max-width: 800px;
    max-height: 85vh;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    animation: modalSlideIn 0.3s ease;
}

.todas-noticias-modal__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: var(--secondary-color);
    color: var(--text-white);
}

.todas-noticias-modal__header h3 {
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.todas-noticias-modal__header h3 i {
    color: var(--primary-color);
}

.todas-noticias-modal__close {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: var(--text-white);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.todas-noticias-modal__close:hover {
    background: var(--primary-color);
    transform: rotate(90deg);
}

.todas-noticias-modal__body {
    padding: 20px;
    overflow-y: auto;
    flex: 1;
}

.todas-noticias__item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: var(--bg-white);
    border-radius: 10px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.todas-noticias__item:hover {
    border-color: var(--primary-color);
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.todas-noticias__item:last-child {
    margin-bottom: 0;
}

.todas-noticias__img {
    width: 120px;
    height: 90px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.todas-noticias__info {
    flex: 1;
    min-width: 0;
}

.todas-noticias__categoria {
    display: inline-block;
    background: var(--primary-color);
    color: var(--text-white);
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.todas-noticias__titulo {
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 5px;
    line-height: 1.3;
}

.todas-noticias__data {
    font-size: 12px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 8px;
}

.todas-noticias__data i {
    color: var(--primary-color);
}

.todas-noticias__resumo {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media screen and (max-width: 768px) {
    .todas-noticias__item {
        flex-direction: column;
        gap: 15px;
    }
    
    .todas-noticias__img {
        width: 100%;
        height: 150px;
    }
    
    .todas-noticias-modal__content {
        width: 95%;
        max-height: 90vh;
    }
}

/* ===== TESTIMONIALS ===== */
/* Google Reviews Badge */
.google-reviews {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.google-reviews__badge {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--bg-card);
    padding: 25px 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 2px solid rgba(66, 133, 244, 0.2);
}

.google-reviews__logo svg {
    display: block;
}

.google-reviews__info {
    text-align: center;
}

.google-reviews__rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
}

.google-reviews__score {
    font-size: 32px;
    font-weight: 800;
    color: var(--secondary-color);
}

.google-reviews__stars {
    display: flex;
    gap: 3px;
}

.google-reviews__stars i {
    color: #FBBC05;
    font-size: 18px;
}

.google-reviews__text {
    font-size: 14px;
    color: var(--text-light);
}

.google-reviews__link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #4285F4;
    color: white;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}

.google-reviews__link:hover {
    background: #3367D6;
    transform: translateY(-2px);
}

.testimonials__slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial__card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    position: relative;
    transition: var(--transition);
}

.testimonial__card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial__card--google {
    border-top: 3px solid #4285F4;
}

.testimonial__google-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f3f4;
    border-radius: 50%;
}

.testimonial__google-badge i {
    font-size: 18px;
    background: linear-gradient(135deg, #4285F4, #34A853, #FBBC05, #EA4335);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonial__stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial__stars i {
    color: #FBBC05;
    font-size: 16px;
}

.testimonial__content {
    margin-bottom: 25px;
}

.testimonial__content i {
    font-size: 40px;
    color: var(--primary-color);
    opacity: 0.3;
    margin-bottom: 20px;
}

.testimonial__content p {
    font-size: 15px;
    color: var(--text-light);
    font-style: italic;
    line-height: 1.8;
}

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

.testimonial__author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial__avatar {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #4285F4, #34A853);
    color: white;
    font-size: 20px;
    font-weight: 700;
    border-radius: 50%;
}

.testimonial__author h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary-color);
}

.testimonial__author span {
    font-size: 14px;
    color: var(--text-light);
}

.testimonials__cta {
    text-align: center;
    margin-top: 50px;
}

.testimonials__cta .btn {
    gap: 12px;
}

.testimonials__cta .btn i {
    font-size: 18px;
}

/* ===== CONTACT ===== */
.contact__content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    background: var(--bg-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.contact__content--centered {
    grid-template-columns: 1fr;
    max-width: 900px;
    margin: 0 auto;
}

.contact__info {
    background: linear-gradient(135deg, var(--secondary-color), var(--bg-dark));
    padding: 50px;
    color: var(--text-white);
}

.contact__info--full {
    text-align: center;
}

.contact__info h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact__info > p {
    font-size: 15px;
    opacity: 0.8;
    margin-bottom: 40px;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.contact__details--grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    text-align: left;
}

.contact__detail {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact__detail i {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 162, 39, 0.2);
    color: var(--primary-color);
    border-radius: 50%;
    font-size: 20px;
    flex-shrink: 0;
}

.contact__detail h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact__detail p {
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.5;
}

.contact__detail p a {
    color: var(--primary-color);
    transition: var(--transition);
}

.contact__detail p a:hover {
    opacity: 0.8;
}

.contact__social {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.contact__social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-white);
    font-size: 18px;
    transition: var(--transition);
}

.contact__social-link:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.contact__cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.contact__cta .btn {
    min-width: 200px;
}

.contact__cta .btn i {
    font-size: 18px;
}

.contact__map {
    margin-top: 50px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.contact__map--inside {
    margin-top: 40px;
    box-shadow: none;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.contact__map iframe {
    display: block;
    border-radius: var(--border-radius);
}

.contact__map--inside iframe {
    border-radius: 10px;
}

.contact__map-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: var(--bg-card);
    color: var(--secondary-color);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.contact__map-link:hover {
    background: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-2px);
}

.contact__form {
    padding: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form__group {
    position: relative;
}

.form__group--full {
    grid-column: span 2;
}

.form__group input,
.form__group select,
.form__group textarea {
    width: 100%;
    padding: 18px 20px;
    font-family: inherit;
    font-size: 15px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    background: transparent;
    transition: var(--transition);
    color: var(--text-color);
}

.form__group label {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    font-size: 15px;
    color: var(--text-light);
    pointer-events: none;
    transition: var(--transition);
    background: var(--bg-card);
    padding: 0 5px;
}

.form__group textarea ~ label {
    top: 20px;
    transform: none;
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.form__group input:focus ~ label,
.form__group input:not(:placeholder-shown) ~ label,
.form__group select:focus ~ label,
.form__group select:valid ~ label,
.form__group textarea:focus ~ label,
.form__group textarea:not(:placeholder-shown) ~ label {
    top: 0;
    font-size: 12px;
    color: var(--primary-color);
}

.form__group textarea ~ label {
    top: 20px;
}

.form__group textarea:focus ~ label,
.form__group textarea:not(:placeholder-shown) ~ label {
    top: -10px;
}

.contact__form .btn {
    grid-column: span 2;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-darker);
    padding-top: 80px;
}

.footer__content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 28px;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 20px;
}

.footer__logo-img {
    height: 80px;
    width: auto;
}

.footer__logo i {
    color: var(--primary-color);
}

.footer__brand p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer__links h4,
.footer__newsletter h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 25px;
}

.footer__links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__links a {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer__links a:hover {
    color: var(--primary-color);
    padding-left: 10px;
}

.footer__newsletter p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.newsletter__form {
    display: flex;
    gap: 10px;
}

.newsletter__form input {
    flex: 1;
    padding: 15px 20px;
    font-family: inherit;
    font-size: 14px;
    border: none;
    border-radius: var(--border-radius);
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
}

.newsletter__form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter__form button {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border: none;
    border-radius: var(--border-radius);
    color: var(--text-white);
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter__form button:hover {
    transform: translateX(5px);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
}

.footer__bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.footer__legal {
    display: flex;
    gap: 30px;
}

.footer__legal a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.footer__legal a:hover {
    color: var(--primary-color);
}

.footer__developer {
    text-align: center;
    padding: 20px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 20px;
}

.footer__developer p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

.footer__developer strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--text-white);
    border-radius: 50%;
    font-size: 20px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25d366;
    color: var(--text-white);
    border-radius: 50%;
    font-size: 30px;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
}

/* ===== RESPONSIVE ===== */
@media screen and (max-width: 1024px) {
    .about__content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about__experience {
        right: 20px;
        bottom: -20px;
    }
    
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery__item--large {
        grid-column: span 2;
    }
    
    .plans__grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .plan__card--featured {
        transform: none;
    }
    
    .testimonials__slider {
        grid-template-columns: 1fr;
    }
    
    .google-reviews__badge {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 15px;
    }
    
    .google-reviews__link {
        width: 100%;
        justify-content: center;
    }
    
    .contact__content {
        grid-template-columns: 1fr;
    }
    
    .contact__details--grid {
        grid-template-columns: 1fr;
    }
    
    .contact__cta {
        flex-direction: column;
        align-items: center;
    }
    
    .contact__cta .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .contact__form {
        grid-template-columns: 1fr;
    }
    
    .form__group--full {
        grid-column: span 1;
    }
    
    .contact__form .btn {
        grid-column: span 1;
    }
    
    .footer__content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--bg-darker);
        padding: 100px 50px;
        transition: var(--transition);
    }
    
    .nav__menu.show-menu {
        right: 0;
    }
    
    .nav__list {
        flex-direction: column;
        gap: 30px;
    }
    
    .nav__close {
        display: block;
        position: absolute;
        top: 30px;
        right: 30px;
    }
    
    .nav__toggle {
        display: block;
    }
    
    /* Dropdown Mobile */
    .nav__item--dropdown {
        position: relative;
    }
    
    .nav__dropdown {
        position: static;
        transform: none;
        background: rgba(255, 255, 255, 0.05);
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        max-height: 0;
        overflow: hidden;
        padding: 0;
        margin-top: 10px;
        border-radius: 8px;
        transition: max-height 0.3s ease;
    }
    
    .nav__item--dropdown.active .nav__dropdown {
        max-height: 300px;
        padding: 10px 0;
    }
    
    .nav__dropdown::before {
        display: none;
    }
    
    .nav__dropdown-link {
        color: var(--text-white);
        padding: 10px 20px;
    }
    
    .nav__dropdown-link:hover {
        background: rgba(201, 162, 39, 0.2);
    }
    
    .hero__buttons {
        flex-direction: column;
    }
    
    .stats__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services__grid {
        grid-template-columns: 1fr;
    }
    
    .gallery__grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    
    .gallery__item--large {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .footer__content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer__bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .section {
        padding: 60px 0;
    }
    
    .hero__title {
        font-size: 36px;
    }
    
    .stats__grid {
        grid-template-columns: 1fr;
    }
    
    .stats__number {
        font-size: 36px;
    }
    
    .contact__info,
    .contact__form {
        padding: 30px;
    }
    
    .plan__card {
        padding: 30px;
    }
    
    .whatsapp-float {
        bottom: 80px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .back-to-top {
        right: 20px;
        bottom: 20px;
        width: 45px;
        height: 45px;
    }
}
