:root {
     --primary-color: #1a3d5c;
     --secondary-color: #f5a623;
     --text-dark: #2c3e50;
     --text-light: #34495e;
}
 body {
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
     color: var(--text-dark);
}
/* Navigation */
 .navbar {
     background-color: var(--primary-color) !important;
     padding: 1rem 2rem;
     box-shadow: 0 24px 20px rgba(0,0,0,0.35);
     border-radius: 50px;
     position: absolute;
     top: 20px;
     left: 50%;
     transform: translateX(-50%);
     z-index: 1000;
     max-width: 1200px;
     width: 90%;
}
 .navbar .container {
     max-width: 100%;
     padding: 0;
     position: relative;
}
 .navbar-brand {
     position: relative;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     transition: transform 0.3s ease;
}
.navbar-brand::before {
  content: '';
  position: absolute;
  background-color: white;
  width: min(270px, 90vw);
  height: calc(100% + 50px + 1rem);
  top: calc(-20px - 1rem);
  left: 50%;
  transform: translateX(-50%);
  border-radius: 0 0 80px 80px;
  z-index: -1;
  box-shadow: 0 54px 90px rgba(0, 0, 0, 0.35);
}

/* Ajuste adicional para telas pequenas */
@media (max-width: 576px) {
  .navbar-brand::before {
    padding-left: 130px !important;
    padding-right: 130px !important;
    padding-bottom: 100px !important;
    top: calc(-15px - 0.5rem);
    border-radius: 0 0 90px 30px;
  }
}
 .navbar-brand:hover {
     transform: scale(1.05);
}
 .navbar-brand img {
     max-height: 60px;
     position: relative;
     z-index: 1;
}
 .navbar-nav {
     gap: 2rem;
}
 .nav-link {
     color: white !important;
     font-weight: 500;
     transition: color 0.3s;
     padding: 0.5rem 1rem !important;
}
 .nav-link:hover {
     color: var(--secondary-color) !important;
}
 .navbar-toggler {
     border: none;
     padding: 0.5rem;
}
 .navbar-toggler:focus {
     box-shadow: none;
}
/* Hero Section */
.hero-section {
    min-height: 750px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 120px;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img,
.hero-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}
/* Search Box */
 .search-box {
     background: white;
     border-radius: 60px;
     padding: 1.2rem 1.5rem;
     box-shadow: 0 10px 40px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.08);
     max-width: 1400px;
     margin: 2rem auto;
     transition: box-shadow 0.3s ease;
}
 .search-box:hover {
     box-shadow: 0 15px 50px rgba(0,0,0,0.18), 0 5px 15px rgba(0,0,0,0.12);
}
 .search-box .search-divider {
     width: 1px;
     height: 40px;
     background: linear-gradient(to bottom, transparent, #e0e0e0, transparent);
     margin: 0 0.5rem;
}
 .search-box .form-control, .search-box .form-select {
     border: none;
     background: transparent;
     padding: 0.75rem 1rem;
     font-size: 0.95rem;
     color: var(--text-dark);
     font-weight: 500;
     cursor: pointer;
     transition: background-color 0.2s ease;
}
 .search-box .form-control:focus, .search-box .form-select:focus {
     outline: none;
     box-shadow: none;
     background-color: rgba(26, 61, 92, 0.03);
     border-radius: 10px;
}
 .search-box .form-select {
     background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%231a3d5c' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
     background-repeat: no-repeat;
     background-position: right 0.75rem center;
     background-size: 16px 12px;
     padding-right: 2.5rem;
}
 .search-box .search-icon {
     color: #6c757d;
     font-size: 1.2rem;
     margin-right: 0.5rem;
     flex-shrink: 0;
}
 .search-box .search-field {
     display: flex;
     align-items: center;
     padding: 0.5rem;
     border-radius: 12px;
     transition: all 0.3s ease;
}
 .search-box .search-field:hover {
     background-color: rgba(26, 61, 92, 0.02);
}
 .search-box .btn-search {
     background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
     color: white;
     border-radius: 50%;
     width: 55px;
     height: 55px;
     padding: 0;
     border: none;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.2rem;
     transition: all 0.3s ease;
     box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}
 .search-box .btn-search:hover {
     transform: scale(1.05);
     box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4);
     background: linear-gradient(135deg, #0052a3 0%, #003d7a 100%);
}
 .search-box .btn-search:active {
     transform: scale(0.98);
}
 .search-box label {
     font-size: 0.75rem;
     color: #6c757d;
     font-weight: 600;
     text-transform: uppercase;
     letter-spacing: 0.5px;
     margin-bottom: 0.25rem;
     display: block;
}
/* Section Titles */
 .section-title {
     color: var(--secondary-color);
     font-size: 0.9rem;
     font-weight: 900;
     letter-spacing: 2px;
     text-transform: uppercase;
     margin-bottom: 0.5rem;
}
 .section-heading {
     color: var(--primary-color);
     font-size: 2.8rem;
     font-weight: 900;
     margin-bottom: 1rem;
     line-height: 38px;
}
/* Amenities Icons */
 .amenities-grid {
     background-color: var(--primary-color);
     border-radius: 20px;
     padding: 2rem;
     color: white;
}
 .amenity-icon {
     text-align: center;
     padding: 1.5rem 1rem;
}
 .amenity-icon i {
     font-size: 2.5rem;
     margin-bottom: 0.5rem;
}
 .amenity-icon .icon-box {
     width: 70px;
     height: 70px;
     border: 2px solid white;
     border-radius: 15px;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 0.75rem;
}
/* FAQ Section - Melhorado com efeito accordion */
 .faq-item {
     border-bottom: 1px solid #e0e0e0;
     padding: 1rem 0;
}
 .faq-question {
     display: flex;
     justify-content: space-between;
     align-items: center;
     cursor: pointer;
     font-weight: 600;
     color: var(--primary-color);
     font-size: 1.1rem;
     transition: color 0.3s ease;
}
 .faq-question:hover {
     color: var(--secondary-color);
}
 .faq-question i {
     transition: transform 0.3s ease;
     font-size: 1.2rem;
}
 .faq-question.active i {
     transform: rotate(180deg);
}
 .faq-answer {
     display: none;
     padding-top: 1rem;
     color: #666;
     line-height: 1.6;
}
/* Academia Banner */
 .academia-banner {
     background: linear-gradient(135deg, var(--primary-color) 0%, #2c5f7f 100%);
     border-radius: 20px;
     padding: 3rem;
     color: white;
     text-align: center;
     position: relative;
     overflow: hidden;
}
 .academia-banner::before {
     content: '';
     position: absolute;
     bottom: -50px;
     right: -50px;
     width: 200px;
     height: 200px;
     background-color: var(--secondary-color);
     border-radius: 20px;
     transform: rotate(45deg);
     opacity: 0.3;
}
 .academia-icon {
     font-size: 5rem;
     margin-bottom: 1rem;
}
/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a4d7a 100%);
    color: white;
    padding: 4rem 0 0;
    margin-top: 4rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), #ffb700, var(--secondary-color));
}

.footer-brand {
    padding-right: 1rem;
}

.footer-logo {
    max-width: 180px;
    height: auto;
    display: block;
}

.footer-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--secondary-color);
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 0.75rem;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 1rem;
}

.footer-links a::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 1.25rem;
}

.footer-links a:hover::before {
    transform: translateX(3px);
}

/* Footer Contact */
.footer-contact {
    color: rgba(255, 255, 255, 0.85);
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.contact-value {
    font-size: 1rem;
    color: white;
    font-weight: 500;
}

.contact-value a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-value a:hover {
    color: var(--secondary-color);
}

.footer-contact address {
    font-style: normal;
    line-height: 1.7;
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 3rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.9rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.8);
}

/* Stagee Credit */
.stagee-credit {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.stagee-credit a {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.stagee-credit a:hover {
    opacity: 0.8;
}

.stagee-logo {
    max-height: 40px;
    width: auto;
    vertical-align: middle;
}

/* Responsive */
@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 0;
        text-align: center;
    }
    
    .footer-brand {
        padding-right: 0;
    }
    
    .footer-logo {
        margin: 0 auto;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .footer-title {
        margin-top: 2rem;
    }
    
    .footer-links a {
        padding-left: 0;
    }
    
    .footer-links a::before {
        display: none;
    }
    
    .contact-item {
        justify-content: center;
    }
    
    .footer-bottom {
        text-align: center;
    }
}
/* Responsive */
 @media (max-width: 992px) {
     .navbar {
         border-radius: 25px;
         width: 95%;
         padding: 1rem;
    }
     .navbar-brand::before {
         width: 160px;
         height: calc(100% + 10px + 1rem);
         top: calc(-10px - 1rem);
    }
     .navbar-nav {
         gap: 0.5rem;
         padding: 1rem 0;
    }
     .nav-link {
         padding: 0.75rem 1rem !important;
    }
     .navbar-brand {
         margin: 1rem 0;
    }
}
 @media (max-width: 768px) {
     .navbar {
         top: 10px;
    }
     .navbar-brand img {
         max-height: 50px;
    }
     .navbar-brand::before {
         width: 140px;
    }
     .hero-section {
         padding-top: 100px;
         min-height: 400px;
    }
     .section-heading {
         font-size: 1.8rem;
    }
     .search-box {
         border-radius: 15px;
    }
}









 .gallery-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-template-rows: repeat(2, 200px);
            gap: 15px;
            margin-top: 30px;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .gallery-item:hover {
            transform: scale(1.02);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-item-main {
            grid-column: 1 / 4;
            grid-row: 1;
        }

        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
            padding: 20px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-overlay i {
            color: white;
            font-size: 24px;
        }

        .badge-photos {
            position: absolute;
            top: 15px;
            right: 15px;
            background: rgba(0,0,0,0.7);
            color: white;
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
        }

        /* Modal Styles */
        .modal-content {
            background: #fff;
            border: none;
            border-radius: 20px;
            overflow: hidden;
        }

        .modal-header {
            border: none;
            padding: 25px 30px 15px;
            background: transparent;
        }

        .modal-body {
            padding: 0 30px 30px;
        }

        .modal-image-container {
            position: relative;
            width: 100%;
            height: 60vh;
            background: #f2f2f2;
            border-radius: 15px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .modal-image-container img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

        .modal-nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: #1a3d5c;
            color: #fff;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            font-weight: 900;
        }

        .modal-nav-btn:hover {
            background: #1a3d5c;
            color: #fff;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }

        .modal-nav-btn i {
            font-size: 20px;
            color: var(--primary-color);
        }

        .modal-nav-prev {
            left: 20px;
        }

        .modal-nav-next {
            right: 20px;
        }

        .btn-close {
            color: #fff;
            background: #1a3d5c;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 1;
            padding: 0;
        }

        .btn-close:hover {
            background: #1a3d5c;
            color: #fff;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }

        .modal-counter {
            text-align: center;
            margin-top: 20px;
            color: var(--text-light);
            font-size: 14px;
            font-weight: 500;
        }

        .modal-thumbnails {
            display: flex;
            gap: 10px;
            margin-top: 20px;
            overflow-x: auto;
            padding-bottom: 10px;
        }

        .modal-thumbnails::-webkit-scrollbar {
            height: 6px;
        }

        .modal-thumbnails::-webkit-scrollbar-thumb {
            background: #ddd;
            border-radius: 3px;
        }

        .modal-thumbnail {
            min-width: 80px;
            height: 60px;
            border-radius: 8px;
            cursor: pointer;
            opacity: 0.6;
            transition: all 0.3s ease;
            border: 3px solid transparent;
        }

        .modal-thumbnail:hover,
        .modal-thumbnail.active {
            opacity: 1;
            border-color: var(--secondary-color);
        }

        .modal-thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 5px;
        }

        @media (max-width: 768px) {
            .gallery-container {
                grid-template-columns: repeat(2, 1fr);
                grid-template-rows: repeat(4, 150px);
                gap: 10px;
            }

            .gallery-item-main {
                grid-column: 1 / 3;
                grid-row: 1 / 3;
            }

            .modal-nav-btn {
                width: 40px;
                height: 40px;
            }
        }







        .location-hero {
            background: linear-gradient(135deg, var(--primary-color) 0%, #2c5f8d 100%);
            padding: 233px 0 133px;
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .location-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
            animation: float 20s linear infinite;
        }

        @keyframes float {
            0% { transform: translateY(0); }
            100% { transform: translateY(-100px); }
        }

        .location-hero h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }

        .location-hero p {
            font-size: 1.2rem;
            opacity: 0.95;
            position: relative;
            z-index: 1;
        }

        .location-container {
            max-width: 1200px;
            margin: -40px auto 0;
            position: relative;
            z-index: 10;
            padding: 0 20px;
        }

        .info-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin-bottom: 40px;
        }

        .info-card {
            background: white;
            border-radius: 16px;
            padding: 30px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .info-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 50px rgba(0,0,0,0.15);
            border-color: var(--secondary-color);
        }

        .info-card-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--secondary-color), #ffc04d);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 28px;
            color: white;
        }

        .info-card h3 {
            color: var(--primary-color);
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .info-card p {
            color: var(--text-light);
            line-height: 1.6;
            margin: 0;
        }

        .map-section {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 50px rgba(0,0,0,0.12);
            margin-bottom: 40px;
        }

        .map-section iframe {
            width: 100%;
            height: 500px;
            border: none;
        }

        .action-buttons {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-bottom: 60px;
        }

        .action-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            padding: 20px 30px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        .action-btn i {
            font-size: 1.5rem;
        }

        .btn-primary-action {
            background: var(--primary-color);
            color: white;
        }

        .btn-primary-action:hover {
            background: #234b6d;
            transform: scale(1.05);
            box-shadow: 0 8px 30px rgba(26, 61, 92, 0.3);
            color: white;
        }

        .btn-secondary-action {
            background: var(--secondary-color);
            color: white;
        }

        .btn-secondary-action:hover {
            background: #e69515;
            transform: scale(1.05);
            box-shadow: 0 8px 30px rgba(245, 166, 35, 0.3);
            color: white;
        }

        .btn-whatsapp {
            background: #25D366;
            color: white;
        }

        .btn-whatsapp:hover {
            background: #1fb855;
            transform: scale(1.05);
            box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
            color: white;
        }

        .directions-info {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-radius: 16px;
            padding: 40px;
            margin-bottom: 40px;
        }

        .directions-info h2 {
            color: var(--primary-color);
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 30px;
            text-align: center;
        }

        .direction-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            margin-bottom: 25px;
            padding: 20px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 3px 15px rgba(0,0,0,0.08);
        }

        .direction-number {
            min-width: 40px;
            height: 40px;
            background: var(--secondary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.2rem;
        }

        .direction-content h4 {
            color: var(--primary-color);
            font-weight: 600;
            margin-bottom: 8px;
        }

        .direction-content p {
            color: var(--text-light);
            margin: 0;
            line-height: 1.6;
        }

        @media (max-width: 768px) {
            .location-hero h1 {
                font-size: 2rem;
            }


            .info-cards {
                grid-template-columns: 1fr;
            }

            .map-section iframe {
                height: 350px;
            }

            .directions-info {
                padding: 25px;
            }
        }



        .space_topo{
            padding-top: 180px;       
            background: linear-gradient(135deg, var(--primary-color) 0%, #2c5f8d 100%);
            padding: 80px 0 60px;
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden; 
        }













.contact-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2c5f8d 100%);
    padding: 233px 0 113px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="80" height="80" xmlns="http://www.w3.org/2000/svg"><circle cx="40" cy="40" r="2" fill="white" opacity="0.1"/></svg>');
    animation: float 25s linear infinite;
}

@keyframes float {
    0% { transform: translateY(0); }
    100% { transform: translateY(-80px); }
}

.contact-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.contact-hero p {
    font-size: 1.2rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

.contact-container {
    max-width: 1200px;
    margin: -50px auto 60px;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 40px;
}

/* Cards de Contato Rápido */
.quick-contacts {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
    border-color: var(--secondary-color);
}

.contact-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color), #ffc04d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: white;
}

.contact-card h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
}

.contact-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 15px;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 8px 15px;
    border-radius: 8px;
    background: #f8f9fa;
}

.contact-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateX(5px);
}

.whatsapp-card {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    text-align: center;
    padding: 40px 30px;
}

.whatsapp-card .contact-icon {
    background: rgba(255, 255, 255, 0.2);
    margin: 0 auto 20px;
}

.whatsapp-card h3 {
    color: white;
    margin-bottom: 10px;
}

.whatsapp-card p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 25px;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: #25D366;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.whatsapp-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    color: #128C7E;
}

/* Formulário */
.form-container {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
}

.form-container h2 {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.form-subtitle {
    color: var(--text-light);
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-control:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 4px rgba(245, 166, 35, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 140px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--primary-color), #2c5f8d);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(26, 61, 92, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Info Adicional */
.additional-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.info-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
}

.info-box-icon {
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: var(--secondary-color);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.info-box h4 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 10px;
}

.info-box p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* Animação de sucesso */
.success-message {
    display: none;
    background: #d4edda;
    border: 2px solid #c3e6cb;
    color: #155724;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    animation: slideDown 0.5s ease;
}

.success-message.show {
    display: flex;
    align-items: center;
    gap: 15px;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsivo */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 2rem;
    }

    .form-container {
        padding: 30px 20px;
    }

    .contact-card,
    .whatsapp-card {
        padding: 25px 20px;
    }
}







/* Room Cards */
.room-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    margin-bottom: 2rem;
    background: white;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.room-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.room-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.room-card-body {
    padding: 1.5rem;
    background: white;
    display: flex;
    flex-direction: column;
}

.room-title {
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.room-price {
    color: var(--secondary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.room-card-body .text-muted {
    margin-bottom: 1rem;
}

.room-features {
    font-size: 0.9rem;
    color: var(--text-light);
    display: flex;
    gap: 1rem;
    margin-top: auto;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.room-features span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* Espaçamento entre as colunas dos cards */
.row > [class*='col-'] {
    margin-bottom: 2rem;
}

/* Botão Detalhes */
.btn-detalhes {
    display: block;
    width: 100%;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background-color: #1a3d5c;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    text-align: center;
}

.btn-detalhes:hover {
    background-color: #0f2a3f;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 61, 92, 0.3);
    text-decoration: none;
}

.btn-detalhes:focus,
.btn-detalhes:active {
    color: #ffffff;
    text-decoration: none;
    outline: none;
}

/* Amenities Grid */
.amenities-grid {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.amenity-icon {
    text-align: center;
}

.icon-box {
    width: 60px;
    height: 60px;
    margin: 0 auto 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), #2c5f8d);
    border-radius: 12px;
    color: white;
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.amenity-icon:hover .icon-box {
    transform: scale(1.1);
}

.amenity-icon small {
    display: block;
    color: var(--text-light);
    font-weight: 500;
}


















/* Header do Quarto */
        .hotel_room-header {
            background: linear-gradient(135deg, var(--primary-color) 0%, #2c5f8d 100%);
            color: white;
            padding: 2rem 0;
            margin-bottom: 2rem;
            padding-top: 233px;
        }

        .hotel_room-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
            animation: float 20s linear infinite;
        }

        .hotel_room-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            text-align: center;
        }

        .hotel_room-price {
            font-size: 1.8rem;
            color: var(--secondary-color);
            font-weight: 600;
            text-align: center;
        }

.hotel_breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hotel_breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.hotel_breadcrumb-item.active {
    color: white;
}


        /* Galeria de Imagens */
        .hotel_gallery-container {
            position: relative;
            background: #000;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        .hotel_main-image {
            width: 100%;
            height: 500px;
            object-fit: cover;
            cursor: pointer;
            transition: transform 0.3s;
        }

        .hotel_main-image:hover {
            transform: scale(1.02);
        }

        .hotel_thumbnail-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            margin-top: 10px;
        }

        .hotel_thumbnail {
            height: 100px;
            object-fit: cover;
            border-radius: 8px;
            cursor: pointer;
            border: 3px solid transparent;
            transition: all 0.3s;
        }

        .hotel_thumbnail:hover {
            border-color: var(--secondary-color);
            transform: scale(1.05);
        }

        .hotel_thumbnail.active {
            border-color: var(--primary-color);
        }

        /* Especificações do Quarto */
        .hotel_specs-container {
            background: white;
            border-radius: 12px;
            padding: 2rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            height: 100%;
        }

        .hotel_spec-item {
            display: flex;
            align-items: center;
            padding: 1rem 0;
            border-bottom: 1px solid #e9ecef;
        }

        .hotel_spec-item:last-child {
            border-bottom: none;
        }

        .hotel_spec-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary-color), #2c5f8d);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-right: 1rem;
            flex-shrink: 0;
        }

        .hotel_spec-content h5 {
            margin: 0;
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-dark);
        }

        .hotel_spec-content p {
            margin: 0;
            font-size: 0.9rem;
            color: var(--text-light);
        }

        .hotel_amenities-list {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 0.8rem;
            margin-top: 1.5rem;
        }

        .hotel_amenity-badge {
            background: #f8f9fa;
            padding: 0.6rem 1rem;
            border-radius: 8px;
            display: flex;
            align-items: center;
            font-size: 0.9rem;
            color: var(--text-dark);
        }

        .hotel_amenity-badge i {
            color: var(--secondary-color);
            margin-right: 0.5rem;
        }

        .hotel_btn-reservar {
            background: var(--secondary-color);
            color: white;
            padding: 1rem 3rem;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            width: 100%;
            margin-top: 1.5rem;
            transition: all 0.3s;
        }

        .hotel_btn-reservar:hover {
            background: #e09616;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(245, 166, 35, 0.4);
        }

        /* Outros Quartos - Slider */
        .hotel_other-rooms-section {
            margin-top: 4rem;
            padding: 3rem 0;
            background: white;
        }

        .hotel_section-title {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 2rem;
            text-align: center;
        }

        .hotel_rooms-slider {
            padding: 20px;
            position: relative;
            overflow: hidden;
        }

        .hotel_rooms-track {
            display: flex;
            transition: transform 0.5s ease;
            gap: 1.5rem;
        }

        .hotel_room-card-mini {
            flex: 0 0 calc(25% - 1.125rem);
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
            cursor: pointer;
        }

        .hotel_room-card-mini:hover {
            transform: translateY(-10px);
            box-shadow: 0 5px 20px rgba(0,0,0,0.2);
        }

        .hotel_room-card-mini img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .hotel_room-card-mini-body {
            padding: 1.5rem;
        }

        .hotel_room-card-mini-body h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 0.5rem;
        }

        .hotel_room-card-mini-body .hotel_price {
            color: var(--secondary-color);
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
        }

        .hotel_room-card-mini-body p {
            font-size: 0.85rem;
            color: var(--text-light);
            margin-bottom: 1rem;
        }

        .hotel_slider-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: var(--primary-color);
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 1.5rem;
            cursor: pointer;
            z-index: 10;
            transition: all 0.3s;
        }

        .hotel_slider-btn:hover {
            background: var(--secondary-color);
            transform: translateY(-50%) scale(1.1);
        }

        .hotel_slider-btn.hotel_prev {
            left: 3px;
        }

        .hotel_slider-btn.hotel_next {
            right: 3px;
        }

        @media (max-width: 1200px) {
            .hotel_room-card-mini {
                flex: 0 0 calc(33.333% - 1rem);
            }
        }

        @media (max-width: 768px) {
            .hotel_room-card-mini {
                flex: 0 0 calc(50% - 0.75rem);
            }
            
            .hotel_main-image {
                height: 300px;
            }
            
            .hotel_thumbnail-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 576px) {
            .hotel_room-card-mini {
                flex: 0 0 100%;
            }
        }






        .leadp{
            font-size: 26px !important;
            font-weight: 800 !important;    
            line-height: 27px;
        }


        .lp p{
            font-size: 17px;
            font-weight: 500;    
        }






          /* Galeria com transição suave */
        .hotel_gallery-container {
            position: relative;
            overflow: hidden;
            border-radius: 12px;
        }
        
        .hotel_main-image {
            width: 100%;
            height: auto;
            max-height: 500px;
            object-fit: cover;
            transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
        }
        
        .hotel_main-image.fade-out {
            opacity: 0;
            transform: scale(0.98);
        }
        
        /* Setas da galeria */
        .hotel_gallery-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.5);
            color: white;
            border: none;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            backdrop-filter: blur(5px);
        }
        
        .hotel_gallery-arrow:hover {
            background: rgba(0, 0, 0, 0.8);
            transform: translateY(-50%) scale(1.1);
        }
        
        .hotel_gallery-arrow-left {
            left: 15px;
        }
        
        .hotel_gallery-arrow-right {
            right: 15px;
        }
        
        .hotel_gallery-arrow i {
            font-size: 1.5rem;
        }
        
        /* Contador de imagens */
        .hotel_gallery-counter {
            position: absolute;
            bottom: 15px;
            right: 15px;
            background: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            backdrop-filter: blur(5px);
        }
        
        .hotel_thumbnail-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
            gap: 10px;
        }
        
        .hotel_thumbnail {
            width: 100%;
            height: 80px;
            object-fit: cover;
            border-radius: 8px;
            transition: all 0.3s ease;
            cursor: pointer;
            opacity: 0.6;
            border: 2px solid transparent;
        }
        
        .hotel_thumbnail:hover {
            opacity: 1;
            transform: scale(1.05);
            border-color: var(--primary-color, #2c5aa0);
        }
        
        .hotel_thumbnail.active {
            opacity: 1;
            border-color: var(--primary-color, #2c5aa0);
        }
        
        /* Link nos cards de outros quartos */
        .hotel_room-card-link {
            text-decoration: none;
            color: inherit;
            display: block;
            height: 100%;
            transition: transform 0.3s ease;
        }
        
        .hotel_room-card-link:hover {
            transform: translateY(-5px);
        }
        
        .hotel_room-card-link:hover h4 {
            color: var(--primary-color, #2c5aa0);
        }
        
        /* Botão close customizado */
        .btn-close {
            position: relative;
            opacity: 1;
        }
        
        .btn-close span {
            font-size: 1.5rem;
            font-weight: 300;
            line-height: 1;
        }
        
        /* Layout compacto dos detalhes */
        .hotel_specs-container-compact {
            background: #fff;
            padding: 1.5rem;
            border-radius: 12px;
            box-shadow: 0 2px 12px rgba(0,0,0,0.08);
            height: 100%;
        }
        
        .hotel_specs-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 0.8rem;
        }
        
        .hotel_spec-item-compact {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            padding: 0.6rem;
            background: #f8f9fa;
            border-radius: 8px;
            transition: all 0.2s ease;
        }
        
        .hotel_spec-item-compact:hover {
            background: #e9ecef;
            transform: translateX(3px);
        }
        
        .hotel_spec-item-compact i {
            font-size: 1.3rem;
            color: var(--primary-color, #2c5aa0);
            min-width: 24px;
        }
        
        .hotel_spec-item-compact div {
            display: flex;
            flex-direction: column;
            gap: 0.1rem;
        }
        
        .hotel_spec-item-compact strong {
            font-size: 0.85rem;
            color: #6c757d;
            font-weight: 600;
        }
        
        .hotel_spec-item-compact span {
            font-size: 0.95rem;
            color: #212529;
        }
        
        .hotel_amenities-compact {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        
        .hotel_amenity-tag {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            padding: 0.4rem 0.8rem;
            background: #f8f9fa;
            border-radius: 20px;
            font-size: 0.85rem;
            color: #495057;
            transition: all 0.2s ease;
        }
        
        .hotel_amenity-tag:hover {
            background: var(--primary-color, #2c5aa0);
            color: white;
            transform: translateY(-2px);
        }
        
        .hotel_amenity-tag i {
            font-size: 0.9rem;
        }

        .modal-content .form-control {
            border-radius: 8px;
            border: 1px solid #dee2e6;
            padding: 0.6rem 0.75rem;
            transition: all 0.3s ease;
        }

        .modal-content .form-control:focus {
            border-color: var(--primary-color, #2c5aa0);
            box-shadow: 0 0 0 0.2rem rgba(44, 90, 160, 0.15);
        }

        .modal-content .form-label {
            color: #495057;
            margin-bottom: 0.5rem;
            font-size: 0.95rem;
        }