/* Reset e Variáveis */
:root {
    --primary-color: #00A8CC;
    --primary-dark: #007A99;
    --secondary-color: #FFB347;
    --text-color: #333333;
    --light-bg: #f5f9fc;
    --white: #ffffff;
    --black: #000000;
    --gray: #666666;
    --light-gray: #f8f8f8;
    --border-color: #e0e0e0;
    --transition: all 0.3s ease;
    --box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    --border-radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.main-navigation {
    padding: 15px 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    max-height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.whatsapp-button {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: var(--white);
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.whatsapp-button:hover {
    background: #20BA59;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-color);
    cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: var(--white);
    padding: 20px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 999;
}

.mobile-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-menu li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.mobile-nav-menu a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    display: block;
    transition: var(--transition);
}

.mobile-nav-menu a:hover {
    color: var(--primary-color);
    padding-left: 10px;
}

.mobile-contact {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.mobile-contact a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: var(--white);
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 200px 0 100px;
    color: var(--white);
    text-align: center;
    overflow: hidden;
    
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    z-index: -1;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,106.7C1248,96,1344,96,1392,96L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: bottom;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Seções */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-color);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
}

/* Properties Section */
.properties {
    padding: 100px 0;
    background: var(--light-bg);
}

.property-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    margin-bottom: 80px;
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.property-card-reverse {
    direction: rtl;
}

.property-card-reverse > * {
    direction: ltr;
}

.property-gallery-wrapper {
    position: relative;
    height: 100%;
    min-height: 500px;
}

.property-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    z-index: 10;
    font-size: 0.9rem;
}

.property-slider-container {
    height: 100%;
    width: 100%;
    position: relative;
}

.property-gallery-1,
.property-gallery-2 {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.property-gallery-1 .swiper-wrapper,
.property-gallery-2 .swiper-wrapper {
    height: 100%;
}

.property-gallery-1 .swiper-slide,
.property-gallery-2 .swiper-slide {
    height: 100%;
    width: 100%;
    position: relative;
}

.property-gallery-1 .swiper-slide img,
.property-gallery-2 .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.property-gallery-1 .swiper-button-next,
.property-gallery-1 .swiper-button-prev,
.property-gallery-2 .swiper-button-next,
.property-gallery-2 .swiper-button-prev {
    color: var(--white);
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.property-gallery-1 .swiper-button-next::after,
.property-gallery-1 .swiper-button-prev::after,
.property-gallery-2 .swiper-button-next::after,
.property-gallery-2 .swiper-button-prev::after {
    font-size: 18px;
}

.property-gallery-1 .swiper-pagination,
.property-gallery-2 .swiper-pagination {
    bottom: 20px;
}

.property-gallery-1 .swiper-pagination-bullet,
.property-gallery-2 .swiper-pagination-bullet {
    background: var(--white);
    opacity: 0.7;
    width: 10px;
    height: 10px;
}

.property-gallery-1 .swiper-pagination-bullet-active,
.property-gallery-2 .swiper-pagination-bullet-active {
    background: var(--primary-color);
    opacity: 1;
}

.gallery-view-button {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 10;
}

.btn-view-gallery {
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    font-size: 0.9rem;
}

.btn-view-gallery:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

/* Modal de Galeria */
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    overflow: hidden;
}

.gallery-modal-content {
    position: relative;
    width: 90%;
    height: 90%;
    margin: 5% auto;
}

.gallery-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: var(--white);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    transition: var(--transition);
}

.gallery-close:hover {
    color: var(--primary-color);
}

.gallery-modal-swiper {
    width: 100%;
    height: 100%;
}

.gallery-modal-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-modal-swiper .swiper-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.gallery-modal-swiper .swiper-button-next,
.gallery-modal-swiper .swiper-button-prev {
    color: var(--white);
    background: rgba(0, 168, 204, 0.8);
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.gallery-modal-swiper .swiper-button-next::after,
.gallery-modal-swiper .swiper-button-prev::after {
    font-size: 24px;
}

.gallery-modal-swiper .swiper-pagination-bullet {
    background: var(--white);
    opacity: 0.7;
    width: 12px;
    height: 12px;
}

.gallery-modal-swiper .swiper-pagination-bullet-active {
    background: var(--primary-color);
    opacity: 1;
}

.property-info {
    padding: 40px;
}

.property-info h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.property-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray);
    margin-bottom: 10px;
    font-size: 1rem;
}

.property-location i {
    color: var(--primary-color);
}

.property-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 20px;
}

.property-rating i {
    color: #FFB347;
    font-size: 0.9rem;
}

.property-rating span {
    margin-left: 8px;
    color: var(--gray);
    font-size: 0.9rem;
}

.property-description {
    margin-bottom: 25px;
    color: var(--text-color);
    line-height: 1.8;
}

.property-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px;
    background: var(--light-bg);
    border-radius: 8px;
    font-size: 0.9rem;
}

.feature i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.property-amenities {
    margin-bottom: 30px;
}

.property-amenities h4 {
    margin-bottom: 15px;
    color: var(--text-color);
}

.property-amenities ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.property-amenities li {
    padding: 8px 0;
    color: var(--text-color);
    font-size: 0.95rem;
}

.btn-block {
    width: 100%;
    display: flex;
    justify-content: center;
}

/* Tours Section */
.tours {
    padding: 100px 0;
    background: var(--white);
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.tour-card {
    text-align: center;
    padding: 35px 25px;
    background: var(--light-bg);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow);
    background: var(--white);
}

.tour-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 2rem;
}

.tour-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.tour-card p {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.tour-info {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 0.85rem;
    color: var(--gray);
}

.tour-info span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.tour-info i {
    color: var(--primary-color);
}

.tours-extra {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.extra-info {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: var(--light-bg);
    border-radius: var(--border-radius);
}

.extra-info i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.extra-info h4 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.extra-info p {
    color: var(--gray);
    margin: 0;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: var(--light-bg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 35px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-rating {
    display: flex;
    gap: 3px;
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: #FFB347;
    font-size: 1rem;
}

.testimonial-text {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.author-avatar i {
    font-size: 3rem;
    color: var(--primary-color);
}

.author-info h4 {
    margin: 0 0 5px;
    font-size: 1.1rem;
}

.author-info span {
    color: var(--gray);
    font-size: 0.85rem;
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-color);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-feature i {
    color: #25D366;
    font-size: 1.2rem;
}

.about-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.1rem;
}

/* Contact Page */
.contact-page {
    padding-top: 80px;
}

.contact-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.contact-hero p {
    font-size: 1.2rem;
    opacity: 0.95;
}

.reservation-form-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-options {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
    text-align: center;
}

.contact-options h2 {
    margin-bottom: 10px;
}

.contact-options > p {
    color: var(--gray);
    margin-bottom: 30px;
}

.whatsapp-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #25D366, #20BA59);
    color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    text-decoration: none;
    margin-bottom: 30px;
    transition: var(--transition);
}

.whatsapp-cta:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.whatsapp-cta-content {
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
}

.whatsapp-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.whatsapp-text h3 {
    margin: 0 0 5px;
    font-size: 1.5rem;
}

.whatsapp-text p {
    margin: 0 0 8px;
    opacity: 0.9;
    font-size: 0.95rem;
}

.phone-number {
    font-size: 1.3rem;
    font-weight: 700;
}

.whatsapp-cta > i {
    font-size: 1.5rem;
}

.divider {
    text-align: center;
    margin: 30px 0;
    position: relative;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border-color);
}

.divider span {
    background: var(--white);
    padding: 0 20px;
    position: relative;
    color: var(--gray);
}

.form-subtitle {
    color: var(--gray);
    margin-bottom: 30px;
}

.reservation-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 168, 204, 0.1);
}

.form-note {
    text-align: center;
    color: var(--gray);
    font-size: 0.9rem;
    margin-top: 15px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--white);
    padding: 50px;
    border-radius: var(--border-radius);
    max-width: 500px;
    text-align: center;
}

.modal-icon {
    font-size: 4rem;
    color: #25D366;
    margin-bottom: 20px;
}

.modal-content h3 {
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.modal-content p {
    margin-bottom: 15px;
    color: var(--gray);
}

.modal-content .btn {
    margin: 10px;
}

.contact-info-section {
    padding: 80px 0;
    background: var(--white);
}

.contact-info-section h2 {
    text-align: center;
    margin-bottom: 50px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.info-card {
    text-align: center;
    padding: 35px;
    background: var(--light-bg);
    border-radius: var(--border-radius);
}

.info-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

.info-card h3 {
    margin-bottom: 15px;
}

.info-card p {
    color: var(--gray);
    margin-bottom: 5px;
}

.info-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.info-card a:hover {
    text-decoration: underline;
}

/* Footer */
.site-footer {
    background: var(--text-color);
    color: var(--white);
}

.footer-widgets {
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-widget h3 {
    margin-bottom: 20px;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}

.footer-widget p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-menu {
    list-style: none;
    padding: 0;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-menu a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--white);
}

.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 9998;
    animation: pulse 2s infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
    }
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 9997;
}

.back-to-top.show {
    display: flex;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

/* Responsividade */
@media (max-width: 992px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .property-card {
        grid-template-columns: 1fr;
    }
    
    .property-card-reverse {
        direction: ltr;
    }
    
    .property-gallery-wrapper {
        min-height: 400px;
    }
    
    .tours-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-modal-content {
        width: 95%;
        height: 95%;
        margin: 2.5% auto;
    }
    
    .gallery-close {
        top: -35px;
        font-size: 35px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .property-gallery-wrapper {
        min-height: 350px;
    }
    
    .property-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .property-amenities ul {
        grid-template-columns: 1fr;
    }
    
    .tours-grid {
        grid-template-columns: 1fr;
    }
    
    .tours-extra {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 150px 0 80px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .property-info {
        padding: 30px 20px;
    }
    
    .property-gallery-wrapper {
        min-height: 300px;
    }
    
    .property-features {
        grid-template-columns: 1fr;
    }
    
    .btn-view-gallery {
        padding: 10px 15px;
        font-size: 0.85rem;
    }
    
    .gallery-view-button {
        bottom: 15px;
        right: 15px;
    }
    
    .floating-whatsapp {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .gallery-modal-content {
        width: 100%;
        height: 100%;
        margin: 0;
    }
    
    .gallery-close {
        top: 10px;
        right: 10px;
        font-size: 30px;
    }
    
    .gallery-modal-swiper .swiper-button-next,
    .gallery-modal-swiper .swiper-button-prev {
        width: 40px;
        height: 40px;
    }
    
    .gallery-modal-swiper .swiper-button-next::after,
    .gallery-modal-swiper .swiper-button-prev::after {
        font-size: 18px;
    }
}