/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100vw;
}

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    max-width: 100vw;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    width: 100%;
    box-sizing: border-box;
    position: relative;
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    z-index: 1001;
    position: absolute;
    left: 20px;
}

.logo-image {
    height: 90px;
    width: auto;
    max-width: 100%;
    transition: all 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

/* Logo dark version for scrolled navbar */
.navbar.scrolled .logo-image {
    content: url('../images/logomov-dark.png');
}

.navbar.scrolled .nav-logo {
    color: #2c3e50;
}

/* Desktop Navigation */
.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #9beb24;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: #9beb24;
}

.navbar.scrolled .nav-link {
    color: #2c3e50;
}

.navbar.scrolled .nav-link:hover {
    color: #9beb24;
}

.orcamento-link {
    background: linear-gradient(135deg, #9beb24, #8bd21f);
    color: white !important;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(155, 235, 36, 0.3);
}

.orcamento-link:hover {
    background: linear-gradient(135deg, #8bd21f, #7bc41e);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(155, 235, 36, 0.4);
    color: white !important;
}

/* Language Selector */
.nav-utils {
    display: flex;
    align-items: center;
    position: absolute;
    right: 20px;
    gap: 20px;
}

/* Social Media Icons */
.social-icons {
    display: flex !important;
    align-items: center;
    gap: 12px;
    z-index: 1002;
}

/* Ensure social icons show on desktop */
@media screen and (min-width: 769px) {
    .social-icons {
        display: flex !important;
    }
}

.social-link {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white !important;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    visibility: visible !important;
    opacity: 1 !important;
}

.social-link:hover {
    background: rgba(155, 235, 36, 0.2);
    color: #9beb24;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(155, 235, 36, 0.3);
}

.social-link i {
    font-size: 16px;
}

/* Scrolled navbar styles for social icons */
.navbar.scrolled .social-link {
    background: rgba(44, 62, 80, 0.1);
    color: #2c3e50;
    border: 1px solid rgba(44, 62, 80, 0.2);
}

.navbar.scrolled .social-link:hover {
    background: rgba(155, 235, 36, 0.2);
    color: #9beb24;
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    cursor: pointer;
}

.navbar.scrolled .language-selector {
    color: #2c3e50;
}

.flags {
    display: flex;
    gap: 5px;
}

.flag {
    font-size: 1.2rem;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.flag:hover {
    transform: scale(1.2);
}

/* Mobile Menu Toggle */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    position: absolute;
    right: 20px;
    width: 50px;
    height: 50px;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hamburger:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.hamburger:active {
    transform: scale(0.95);
}

.bar {
    width: 22px;
    height: 2px;
    background-color: white;
    margin: 2.5px 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 2px;
    transform-origin: center;
}

.navbar.scrolled .bar {
    background-color: #2c3e50;
}

.navbar.scrolled .hamburger {
    background: rgba(44, 62, 80, 0.1);
    border: 1px solid rgba(44, 62, 80, 0.2);
}

.navbar.scrolled .hamburger:hover {
    background: rgba(44, 62, 80, 0.15);
}

/* Hamburger Animation */
.hamburger.active .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
    background-color: #9beb24;
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
    background-color: #9beb24;
}

.hamburger.active {
    background: rgba(155, 235, 36, 0.1);
    border-color: rgba(155, 235, 36, 0.3);
    box-shadow: 0 6px 20px rgba(155, 235, 36, 0.2);
}

/* Mobile Menu Header - Hidden on desktop */
.mobile-menu-header {
    display: none;
}

/* Hero Section */
.hero {
    position: relative;
    height: 70vh;
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
}

.hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        url('../images/hero-background.webp');
    background-size: cover;
    background-position: center;
    animation: fadeIn 1s ease-in-out;
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    color: white;
    width: 100%;
    box-sizing: border-box;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-line-1 {
    display: block;
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.hero-line-2 {
    display: block;
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: 3px;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 18px 35px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: inline-block;
    text-align: center;
    letter-spacing: 0.8px;
    max-width: 100%;
    box-sizing: border-box;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.btn-primary {
    background: linear-gradient(135deg, #9beb24, #8bd21f);
    color: white;
    box-shadow: 0 8px 25px rgba(155, 235, 36, 0.3);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(155, 235, 36, 0.4);
    background: linear-gradient(135deg, #8bd21f, #7bc11e);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: white;
    transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
}

.btn-secondary:hover {
    background: white;
    color: #2c3e50;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.2);
    border-color: white;
}

.btn-secondary:hover::before {
    width: 100%;
}

.btn-secondary:active {
    transform: translateY(-1px);
}

/* Carousel Navigation */
.carousel-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
    padding: 12px 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 25px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.carousel-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.8);
    background: transparent !important;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    z-index: 10;
}

.carousel-dot.active {
    border-color: white;
    background: white !important;
    transform: scale(1.3);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
    opacity: 1;
}

.carousel-dot:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.2);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

/* Carousel Arrows */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 10;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.carousel-arrow:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.15);
    border-color: white;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.carousel-arrow:active {
    transform: translateY(-50%) scale(1.05);
}

.carousel-prev {
    left: 40px;
}

.carousel-next {
    right: 40px;
}

/* About Section */
.about-section {
    padding: 40px 0;
    background: white;
    min-height: auto;
    display: block;
    padding-top: 60px;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
    box-sizing: border-box;
    height: auto;
    max-height: none;
}

.about-section .container {
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
}

.about-section .about-content,
.about-section .about-main,
.about-section .about-photos,
.about-section .about-text,
.about-section .travel-showcase,
.about-section .showcase-content {
    max-height: none !important;
    overflow: visible !important;
}

.section-header {
    text-align: left;
    margin-bottom: 10px;
    width: 100%;
    max-width: 100%;
}

.section-title {
    font-size: 2rem;
    font-weight: 300;
    color: #000000;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
    text-align: left;
    position: relative;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 2px;
    background: #9beb24;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Travel Showcase */
.travel-showcase {
    background: transparent;
    border-radius: 0;
    padding: 40px 0 0 0;
    box-shadow: none;
    margin-top: 40px;
}

.showcase-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
    min-height: auto;
}

/* Photos Grid */
.photos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 15px;
    position: relative;
    height: auto;
}

.photo-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    height: 180px;
    max-height: 180px;
}

.photo-item:hover {
    transform: scale(1.05);
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Showcase Text */
.showcase-text {
    padding-left: 0;
    padding-bottom: 0;
    margin-bottom: 0;
}

.hashtag {
    background: #9beb24;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

.showcase-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.2;
}

.showcase-description {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.6;
    margin-bottom: 30px;
    font-weight: 300;
}

.showcase-btn {
    background: #eeeeee;
    color: #2c3e50;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin-bottom: 0;
}

.showcase-btn:hover {
    background: #9beb24;
    color: white;
    transform: translateY(-2px);
}

.showcase-btn i {
    font-size: 0.8rem;
}

/* New About Section Styles */
.about-content {
    margin-top: 30px;
}

.about-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    min-height: auto;
}

/* Enhanced Photos Section */
.about-photos {
    position: relative;
}

.photo-showcase {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: auto;
}

.main-photo {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease;
    height: 300px;
    margin-bottom: 20px;
}

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

.main-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(155, 235, 36, 0.8), rgba(139, 210, 31, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.main-photo:hover .photo-overlay {
    opacity: 1;
}

.photo-badge {
    background: white;
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #2c3e50;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.photo-badge i {
    color: #9beb24;
    font-size: 1.2rem;
}

.secondary-photos {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
    margin: 15px 0;
}

.secondary-photos .photo-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 120px;
}

.secondary-photos .photo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.secondary-photos .photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Bottom Large Photo */
.bottom-photo {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 300px;
    margin-top: 15px;
}

.bottom-photo:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.bottom-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Enhanced Text Section */
.about-text {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding-left: 20px;
}

.about-intro {
    margin-bottom: 20px;
}

.company-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.badge-text {
    color: #9beb24;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.badge-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #9beb24, #8bd21f);
    border-radius: 2px;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 25px;
    line-height: 1.2;
}

.about-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #5a6c7d;
    font-weight: 300;
    margin-bottom: 0;
}

/* Features Grid */
.about-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-radius: 15px;
    border: 1px solid rgba(155, 235, 36, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(155, 235, 36, 0.15);
    border-color: rgba(155, 235, 36, 0.3);
}

.feature-card .feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #9beb24, #8bd21f);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(155, 235, 36, 0.3);
}

.feature-card .feature-content h4 {
    margin: 0 0 8px 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
}

.feature-card .feature-content p {
    margin: 0;
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.5;
}

/* Stats Section */
.about-stats {
    display: flex;
    justify-content: space-between;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    border-radius: 20px;
    padding: 40px 30px;
    color: white;
    box-shadow: 0 15px 40px rgba(44, 62, 80, 0.2);
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #9beb24;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CTA Section */
.about-cta {
    text-align: center;
    margin-top: 20px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #9beb24, #8bd21f);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(155, 235, 36, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(155, 235, 36, 0.4);
    background: linear-gradient(135deg, #8bd21f, #7bc11e);
}

.cta-button i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(5px);
}

/* Hide original layout on desktop, show new layout */
@media screen and (min-width: 769px) {
    .travel-showcase {
        display: none;
    }
}

.about-features {
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(76, 175, 80, 0.05);
    border-radius: 8px;
    border-left: 4px solid #4CAF50;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: #4CAF50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-content h4 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
}

.feature-content p {
    margin: 0;
    font-size: 0.9rem;
    color: #5a6c7d;
}

.about-stats {
    display: flex;
    justify-content: space-between;
    margin: 30px 0;
    padding: 20px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    border-radius: 12px;
    color: white;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: white;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 300;
}


.company-info {
    margin-bottom: 20px;
}

.company-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 5px;
}

.company-subtitle {
    font-size: 1rem;
    color: #9beb24;
    font-weight: 600;
}

.contact-info {
    border-top: 1px solid #e9ecef;
    padding-top: 20px;
}

.contact-label {
    font-size: 0.9rem;
    color: #5a6c7d;
    margin-bottom: 5px;
}

.contact-phone {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Mobile Styles */
@media screen and (max-width: 768px) {
    .hamburger {
        display: flex !important;
        position: absolute;
        right: 20px;
    }
    
    /* Mobile Menu Header - Show only on mobile */
    .mobile-menu-header {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        height: 80px;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 249, 250, 0.95));
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 30px;
        z-index: 1001;
        transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        border-bottom: 1px solid rgba(155, 235, 36, 0.2);
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active ~ .mobile-menu-header {
        right: 0;
    }

    .mobile-menu-logo img {
        height: 40px;
        width: auto;
    }

    .mobile-menu-close {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgba(155, 235, 36, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #2c3e50;
        font-size: 1.2rem;
        cursor: pointer;
        transition: all 0.3s ease;
        border: 1px solid rgba(155, 235, 36, 0.2);
    }

    .mobile-menu-close:hover {
        background: rgba(155, 235, 36, 0.2);
        transform: scale(1.1);
        color: #9beb24;
    }
    
    .social-icons {
        display: none !important;
    }

    .navbar .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        height: 100vh;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 249, 250, 0.95));
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
        z-index: 1000;
        padding: 100px 0 2rem 0;
        gap: 0;
        border-left: 1px solid rgba(155, 235, 36, 0.2);
    }

    .navbar .nav-menu.active {
        right: 0;
        transform: translateX(0);
    }


    .navbar .nav-menu .nav-item {
        margin: 0;
        opacity: 0;
        transform: translateX(60px) scale(0.9);
        animation: slideInRight 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    }

    .navbar .nav-menu .nav-item:nth-child(1) { animation-delay: 0.1s; }
    .navbar .nav-menu .nav-item:nth-child(2) { animation-delay: 0.2s; }
    .navbar .nav-menu .nav-item:nth-child(3) { animation-delay: 0.3s; }
    .navbar .nav-menu .nav-item:nth-child(4) { animation-delay: 0.4s; }
    .navbar .nav-menu .nav-item:nth-child(5) { animation-delay: 0.5s; }
    .navbar .nav-menu .nav-item:nth-child(6) { animation-delay: 0.6s; }

    .navbar .nav-menu .nav-link {
        color: #2c3e50;
        font-size: 1.3rem;
        font-weight: 600;
        padding: 1.2rem 2.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        position: relative;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        border-radius: 15px;
        margin: 0.8rem 0;
        width: 240px;
        text-align: center;
        background: rgba(255, 255, 255, 0.5);
        border: 1px solid rgba(155, 235, 36, 0.1);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        letter-spacing: 0.5px;
    }

    .navbar .nav-menu .nav-link::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(155, 235, 36, 0.1), rgba(139, 210, 31, 0.1));
        border-radius: 15px;
        opacity: 0;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        transform: scale(0.8);
    }

    .navbar .nav-menu .nav-link::after {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 4px;
        height: 0;
        background: linear-gradient(135deg, #9beb24, #8bd21f);
        border-radius: 0 2px 2px 0;
        transition: height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .navbar .nav-menu .nav-link:hover {
        color: #9beb24;
        transform: translateX(15px) scale(1.02);
        background: rgba(255, 255, 255, 0.8);
        border-color: rgba(155, 235, 36, 0.3);
        box-shadow: 0 8px 25px rgba(155, 235, 36, 0.15);
    }

    .navbar .nav-menu .nav-link:hover::before {
        opacity: 1;
        transform: scale(1);
    }

    .navbar .nav-menu .nav-link:hover::after {
        height: 60%;
    }
    
    /* Estilo especial para o link Orçamento no mobile */
    .navbar .nav-menu .nav-link.orcamento-link {
        background: linear-gradient(135deg, #9beb24, #8bd21f);
        color: white !important;
        border: 2px solid #9beb24;
        box-shadow: 0 6px 20px rgba(155, 235, 36, 0.3);
        font-weight: 700;
    }
    
    .navbar .nav-menu .nav-link.orcamento-link:hover {
        background: linear-gradient(135deg, #8bd21f, #7bc41e);
        transform: translateX(15px) scale(1.05);
        box-shadow: 0 10px 30px rgba(155, 235, 36, 0.4);
        color: white !important;
    }

    @keyframes slideInRight {
        to {
            opacity: 1;
            transform: translateX(0) scale(1);
        }
    }

    .nav-utils {
        display: none;
    }

    /* Overlay para o menu mobile */
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(44, 62, 80, 0.4));
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-container {
        padding: 0 15px;
    }

    .carousel-arrow {
        display: none;
    }
    
    .carousel-nav {
        bottom: 20px;
    }
    
    .carousel-dot {
        width: 10px;
        height: 10px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-line-1 {
        font-size: 1.3rem;
    }

    .hero-line-2 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 1rem;
    }

    .btn {
        width: 140px;
        padding: 10px 16px;
        font-size: 0.85rem;
        border-radius: 50px;
        font-weight: 500;
        text-decoration: none;
        cursor: pointer;
        transition: all 0.3s ease;
        display: inline-block;
        text-align: center;
        letter-spacing: 0.3px;
        max-width: 100%;
        box-sizing: border-box;
        text-transform: none;
        position: static;
        z-index: auto;
    }

    .btn-primary {
        background: #9beb24;
        color: white;
        box-shadow: none;
        border: none;
        position: static;
        overflow: visible;
    }

    .btn-primary::before {
        display: none;
    }

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: none;
        background: #9beb24;
    }

    .btn-primary:hover::before {
        display: none;
    }

    .btn-primary:active {
        transform: translateY(0);
    }

    .btn-secondary {
        background: transparent;
        color: white;
        border: 2px solid white;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        position: static;
        overflow: visible;
    }

    .btn-secondary::before {
        display: none;
    }

    .btn-secondary:hover {
        background: white;
        color: #2c3e50;
        transform: translateY(-2px);
        box-shadow: none;
        border-color: white;
    }

    .btn-secondary:hover::before {
        display: none;
    }

    .btn-secondary:active {
        transform: translateY(0);
    }

    .about-section {
        overflow: hidden;
        width: 100%;
        max-width: 100vw;
        padding: 30px 0;
        padding-top: 50px;
        height: auto;
        max-height: none;
    }

    .about-section .container {
        height: auto !important;
        max-height: none !important;
        overflow: visible !important;
    }

    .about-section .about-content,
    .about-section .about-main,
    .about-section .about-photos,
    .about-section .about-text,
    .about-section .travel-showcase,
    .about-section .showcase-content {
        max-height: none !important;
        overflow: visible !important;
    }

    .section-header {
        margin-bottom: 30px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .showcase-content {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        min-height: auto;
    }
    
    .showcase-text {
        padding-left: 0;
    }
    
    .showcase-title {
        font-size: 1.5rem;
    }
    
    .photos-grid {
        display: flex;
        flex-direction: column;
        gap: 6px;
        height: auto;
    }
    
    .photo-item {
        flex: 1;
        min-height: 0;
        height: 140px !important;
        max-height: 140px !important;
    }
}

@media screen and (max-width: 480px) {
    .nav-logo h1 {
        font-size: 1.2rem;
    }

    .nav-logo p {
        font-size: 0.65rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-line-1 {
        font-size: 1.1rem;
    }

    .hero-line-2 {
        font-size: 1.7rem;
    }

    .hero-content {
        padding: 0 15px;
    }

    .btn {
        width: 120px;
        padding: 8px 12px;
        font-size: 0.8rem;
        border-radius: 50px;
        font-weight: 500;
        text-decoration: none;
        cursor: pointer;
        transition: all 0.3s ease;
        display: inline-block;
        text-align: center;
        letter-spacing: 0.2px;
        max-width: 100%;
        box-sizing: border-box;
        text-transform: none;
        position: static;
        z-index: auto;
    }

    .btn-primary {
        background: #9beb24;
        color: white;
        box-shadow: none;
        border: none;
        position: static;
        overflow: visible;
    }

    .btn-primary::before {
        display: none;
    }

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: none;
        background: #9beb24;
    }

    .btn-primary:hover::before {
        display: none;
    }

    .btn-primary:active {
        transform: translateY(0);
    }

    .btn-secondary {
        background: transparent;
        color: white;
        border: 2px solid white;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        position: static;
        overflow: visible;
    }

    .btn-secondary::before {
        display: none;
    }

    .btn-secondary:hover {
        background: white;
        color: #2c3e50;
        transform: translateY(-2px);
        box-shadow: none;
        border-color: white;
    }

    .btn-secondary:hover::before {
        display: none;
    }

    .btn-secondary:active {
        transform: translateY(0);
    }

    .about-section {
        padding: 20px 0;
        padding-top: 40px;
        overflow: hidden;
        height: auto;
        max-height: none;
    }

    .about-section .container {
        height: auto !important;
        max-height: none !important;
        overflow: visible !important;
    }

    .about-section .about-content,
    .about-section .about-main,
    .about-section .about-photos,
    .about-section .about-text,
    .about-section .travel-showcase,
    .about-section .showcase-content {
        max-height: none !important;
        overflow: visible !important;
    }
    
    .section-header {
        margin-bottom: 20px;
    }
    
    .section-title {
        font-size: 1.2rem;
    }
    
    .travel-showcase {
        padding: 20px 0;
        margin-top: 20px;
    }
    
    .showcase-content {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        min-height: auto;
    }
    
    .showcase-title {
        font-size: 1.3rem;
    }
    
    .photos-grid {
        display: flex;
        flex-direction: column;
        gap: 5px;
        height: auto;
    }
    
    .photo-item {
        flex: 1;
        min-height: 0;
        height: 120px !important;
        max-height: 120px !important;
    }
    
    .company-name {
        font-size: 1.2rem;
    }
    
    .contact-phone {
        font-size: 1rem;
    }
}

/* Mobile Image Section */
.mobile-image-section {
    display: none;
    width: 100vw;
    max-width: 100vw;
    overflow: hidden;
    margin: 0;
    padding: 0;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    margin-bottom: -40px;
    margin-top: -30px;
}

.mobile-full-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Show only on mobile */
@media screen and (max-width: 768px) {
    .mobile-image-section {
        display: block;
    }
    
    /* Hide new about section elements on mobile and show original layout */
    .about-content {
        display: none;
    }
    
    .section-subtitle {
        display: none;
    }
    
        /* Restore original mobile layout */
        .travel-showcase {
            display: block;
        }
        
        .showcase-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            align-items: stretch;
            min-height: auto;
        }
        
        .photos-grid {
            display: flex;
            flex-direction: column;
            gap: 6px;
            position: relative;
            height: auto;
        }
    
    .photo-item {
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease;
        height: 140px !important;
        max-height: 140px !important;
    }
    
        .showcase-text {
            padding-left: 0;
            display: flex;
            flex-direction: column;
            justify-content: center;
            height: 100%;
        }
        
        /* Hide extra photo on mobile */
        .extra-photo {
            display: none !important;
        }
    }



/* Avaliações Section */
.avaliacoes-section {
    padding: 40px 0;
    margin-top: -40px;
    background: white;
}

.rating-summary {
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

.rating-overall {
    text-align: center;
    background-color: white;
    padding: 40px 60px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.rating-number {
    font-size: 5rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1;
    margin-bottom: 15px;
}

.rating-stars {
    color: #FFD700;
    font-size: 2rem;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.rating-count {
    color: #5a6c7d;
    font-size: 1.1rem;
    font-weight: 300;
}


.testimonials-badge {
    margin-top: 20px;
    text-align: center;
    color: #5a6c7d;
}

.badge-platforms {
    font-weight: 500;
    display: flex;
    justify-content: center;
    gap: 12px;
    font-size: 1rem;
    color: #2c3e50;
}

@media screen and (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 576px) {
    .rating-overall {
        padding: 30px 40px;
    }
    
    .rating-number {
        font-size: 4rem;
    }
    
    .rating-stars {
        font-size: 1.7rem;
    }
}


/* Contato Section */
.contato-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

/* Background Elements */
.contato-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(155, 235, 36, 0.1), rgba(139, 210, 31, 0.1));
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 120px;
    height: 120px;
    top: 20%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    right: 10%;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Section Header */
.contato-section .section-header {
    text-align: left;
    margin-bottom: 10px;
    width: 100%;
    max-width: 100%;
    position: relative;
    z-index: 2;
}



.contato-section .section-subtitle {
    font-size: 1.2rem;
    color: #5a6c7d;
    margin-top: 10px;
    font-weight: 300;
    text-align: left;
}

/* Contact Cards */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

/* Mobile Toggle Button */
.contact-toggle-mobile {
    display: none;
}

.toggle-header {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(155, 235, 36, 0.1);
}

.toggle-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.toggle-header:active {
    transform: translateY(0) scale(0.98);
    transition: all 0.1s ease;
}

@keyframes toggleBounce {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.toggle-header.clicked {
    animation: toggleBounce 0.3s ease;
}

.toggle-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, #9beb24, #8bd21f);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.toggle-content {
    flex: 1;
}

.toggle-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 5px 0;
}

.toggle-content p {
    font-size: 0.9rem;
    color: #5a6c7d;
    margin: 0;
}

.toggle-arrow {
    color: #9beb24;
    font-size: 1.2rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: center;
}

.toggle-arrow.rotated {
    transform: rotate(180deg);
    color: #8bd21f;
}

/* Contact Cards Container */
.contact-cards-container {
    display: contents;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
}

.contact-cards-container.collapsed {
    display: none;
}

.contact-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(155, 235, 36, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #9beb24, #8bd21f);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(155, 235, 36, 0.3);
}

.card-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: linear-gradient(135deg, #9beb24, #8bd21f);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(155, 235, 36, 0.3);
    transition: all 0.3s ease;
}

.contact-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(155, 235, 36, 0.4);
}

.card-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 10px 0;
}

.card-content p {
    font-size: 1.1rem;
    color: #2c3e50;
    font-weight: 600;
    margin: 0 0 5px 0;
}

.card-content span {
    font-size: 0.9rem;
    color: #5a6c7d;
    font-weight: 300;
}

.card-action {
    margin-top: 20px;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #9beb24, #8bd21f);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(155, 235, 36, 0.3);
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(155, 235, 36, 0.4);
    background: linear-gradient(135deg, #8bd21f, #7bc11e);
}

.contact-btn.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.contact-btn.whatsapp:hover {
    background: linear-gradient(135deg, #128C7E, #075E54);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Form Section Header */
.form-section-header {
    text-align: left;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

/* Form Container */
.form-container {
    background: white;
    border-radius: 25px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(155, 235, 36, 0.1);
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}


/* Modern Form Styles */
.contato-form-modern {
    position: relative;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.form-group {
    position: relative;
}

/* Input Container */
.input-container {
    position: relative;
    margin-bottom: 30px;
}

.input-container input {
    width: 100%;
    padding: 20px 0 10px 0;
    border: none;
    border-bottom: 2px solid #e9ecef;
    background: transparent;
    font-size: 1rem;
    color: #2c3e50;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.input-container input:focus {
    outline: none;
    border-bottom-color: #9beb24;
}

.input-container input:focus + label,
.input-container input:valid + label {
    transform: translateY(-25px) scale(0.8);
    color: #9beb24;
}

.input-container label {
    position: absolute;
    left: 0;
    top: 20px;
    color: #5a6c7d;
    font-size: 1rem;
    transition: all 0.3s ease;
    pointer-events: none;
    transform-origin: left top;
}

.input-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #9beb24, #8bd21f);
    transition: width 0.3s ease;
}

.input-container input:focus ~ .input-line {
    width: 100%;
}

/* Select Container */
.select-container {
    position: relative;
    margin-bottom: 30px;
}

.select-container select {
    width: 100%;
    padding: 20px 40px 10px 0;
    border: none;
    border-bottom: 2px solid #e9ecef;
    background: transparent;
    font-size: 1rem;
    color: #2c3e50;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    appearance: none;
    cursor: pointer;
}

.select-container select:focus {
    outline: none;
    border-bottom-color: #9beb24;
}

.select-container select:focus + label,
.select-container select:valid + label {
    transform: translateY(-25px) scale(0.8);
    color: #9beb24;
}

.select-container label {
    position: absolute;
    left: 0;
    top: 20px;
    color: #5a6c7d;
    font-size: 1rem;
    transition: all 0.3s ease;
    pointer-events: none;
    transform-origin: left top;
}

.select-arrow {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #5a6c7d;
    pointer-events: none;
    transition: all 0.3s ease;
}

.select-container select:focus ~ .select-arrow {
    color: #9beb24;
    transform: translateY(-50%) rotate(180deg);
}

/* Textarea Container */
.textarea-container {
    position: relative;
    margin-bottom: 30px;
}

.textarea-container textarea {
    width: 100%;
    padding: 20px 0 10px 0;
    border: none;
    border-bottom: 2px solid #e9ecef;
    background: transparent;
    font-size: 1rem;
    color: #2c3e50;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    resize: vertical;
    min-height: 120px;
}

.textarea-container textarea:focus {
    outline: none;
    border-bottom-color: #9beb24;
}

.textarea-container textarea:focus + label,
.textarea-container textarea:valid + label {
    transform: translateY(-25px) scale(0.8);
    color: #9beb24;
}

.textarea-container label {
    position: absolute;
    left: 0;
    top: 20px;
    color: #5a6c7d;
    font-size: 1rem;
    transition: all 0.3s ease;
    pointer-events: none;
    transform-origin: left top;
}

.textarea-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #9beb24, #8bd21f);
    transition: width 0.3s ease;
}

.textarea-container textarea:focus ~ .textarea-line {
    width: 100%;
}

/* Radio Group Styles */
.radio-group {
    margin-bottom: 30px;
}

.radio-label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
    cursor: default;
}

.radio-options {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 1rem;
    color: #5a6c7d;
    transition: all 0.3s ease;
    padding: 10px 15px;
    border-radius: 8px;
    border: 2px solid transparent;
}

.radio-option:hover {
    color: #9beb24;
    background: rgba(155, 235, 36, 0.05);
    border-color: rgba(155, 235, 36, 0.2);
}

.radio-option input[type="radio"] {
    display: none;
}

.radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #e9ecef;
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
    background: white;
}

.radio-option input[type="radio"]:checked + .radio-custom {
    border-color: #9beb24;
    background: #9beb24;
}

.radio-option input[type="radio"]:checked + .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
}

.radio-option input[type="radio"]:checked ~ * {
    color: #9beb24;
    font-weight: 600;
}

/* Form Footer */
.form-footer {
    text-align: center;
    margin-top: 40px;
}

.submit-btn {
    position: relative;
    background: linear-gradient(135deg, #9beb24, #8bd21f);
    color: white;
    border: none;
    padding: 18px 50px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(155, 235, 36, 0.3);
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    min-width: 200px;
    justify-content: center;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(155, 235, 36, 0.4);
    background: linear-gradient(135deg, #8bd21f, #7bc11e);
}

.submit-btn:active {
    transform: translateY(-1px);
}

.submit-btn.loading .btn-text,
.submit-btn.loading .btn-icon {
    opacity: 0;
}

.submit-btn.loading .btn-loading {
    opacity: 1;
}

.btn-loading {
    position: absolute;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.form-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    color: #5a6c7d;
    font-size: 0.9rem;
    font-weight: 300;
}

.form-info i {
    color: #9beb24;
}

/* Success Message */
.success-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    text-align: center;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(155, 235, 36, 0.2);
}

.success-message.show {
    transform: translate(-50%, -50%) scale(1);
}

.success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #9beb24, #8bd21f);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    margin: 0 auto 20px;
    animation: successPulse 0.6s ease;
}

@keyframes successPulse {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}


.success-message h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 10px 0;
}

.success-message p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin: 0;
    font-weight: 300;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    position: relative;
    overflow: hidden;
}

.footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    color: #2c3e50;
    transform: translateY(-50%);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding: 60px 0 40px;
    position: relative;
    z-index: 2;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-brand {
    max-width: 280px;
}

.footer-logo img {
    height: 60px;
    width: auto;
    margin-bottom: 15px;
    filter: brightness(1.1);
}

.footer-description {
    color: #bdc3c7;
    line-height: 1.5;
    margin-bottom: 25px;
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    background: #9beb24;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(155, 235, 36, 0.3);
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #9beb24;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: #9beb24;
    border-radius: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #9beb24;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #bdc3c7;
    font-size: 0.9rem;
}

.contact-item i {
    width: 16px;
    color: #9beb24;
    font-size: 1rem;
}

.footer-newsletter {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 30px;
    margin: 30px 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: white;
}

.newsletter-content p {
    color: #bdc3c7;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.newsletter-form input {
    flex: 1;
    min-width: 200px;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
    color: #bdc3c7;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #9beb24;
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-form button {
    padding: 12px 20px;
    background: #9beb24;
    color: #2c3e50;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-form button:hover {
    background: #8bd21f;
    transform: translateY(-1px);
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding: 20px 0;
    position: relative;
    z-index: 2;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    color: #bdc3c7;
    margin: 0;
    font-size: 0.85rem;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-links a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #9beb24;
}

/* Footer Mobile Responsive */
@media screen and (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 60px 0 40px;
    }
    
    .footer-brand {
        max-width: none;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-newsletter {
        padding: 30px 20px;
        margin: 30px 0;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        min-width: auto;
        width: 100%;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-bottom-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }
}

@media screen and (max-width: 480px) {
    .footer-content {
        padding: 40px 0 30px;
    }
    
    .footer-newsletter {
        padding: 25px 15px;
    }
    
    .newsletter-content h4 {
        font-size: 1.2rem;
    }
    
    .footer-title {
        font-size: 1.1rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
    }
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .about-features {
        display: none;
    }
    
    .about-stats {
        display: none;
    }
    
    /* Contact Section Mobile */
    .contato-section {
        padding: 60px 0;
    }
    
    
    .contato-section .section-subtitle {
        font-size: 1.1rem;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    /* Show mobile toggle button */
    .contact-toggle-mobile {
        display: block;
        margin-bottom: 20px;
    }
    
    /* Hide contact cards by default on mobile */
    .contact-cards-container {
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        transform: translateY(-10px);
    }
    
    .contact-cards-container.expanded {
        max-height: 2000px;
        opacity: 1;
        transform: translateY(0);
        transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    
    .contact-cards-container.collapsed {
        max-height: 0;
        opacity: 0;
        transform: translateY(-10px);
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    
    .contact-cards-container .contact-card {
        margin-bottom: 15px;
        transform: translateY(20px);
        opacity: 0;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    
    .contact-cards-container.expanded .contact-card {
        transform: translateY(0);
        opacity: 1;
    }
    
    .contact-cards-container.expanded .contact-card:nth-child(1) {
        transition-delay: 0.1s;
    }
    
    .contact-cards-container.expanded .contact-card:nth-child(2) {
        transition-delay: 0.2s;
    }
    
    .contact-cards-container.expanded .contact-card:nth-child(3) {
        transition-delay: 0.3s;
    }
    
    .contact-card {
        padding: 25px;
    }
    
    .form-container {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .form-title {
        font-size: 1.6rem;
    }
    
    .submit-btn {
        width: 100%;
        padding: 15px 30px;
    }
    
    .floating-shape {
        display: none;
    }
    
    /* Mobile Radio Button Styles */
    .radio-options {
        flex-direction: column;
        gap: 15px;
    }
    
    .radio-option {
        padding: 15px 20px;
        border-radius: 12px;
        background: rgba(248, 249, 250, 0.8);
        border: 2px solid rgba(155, 235, 36, 0.1);
        transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    
    .radio-option:hover,
    .radio-option:active {
        background: rgba(155, 235, 36, 0.1);
        border-color: rgba(155, 235, 36, 0.3);
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(155, 235, 36, 0.2);
    }
    
    .radio-custom {
        width: 24px;
        height: 24px;
        border-width: 3px;
    }
    
    .radio-option input[type="radio"]:checked + .radio-custom::after {
        width: 10px;
        height: 10px;
    }
}

@media screen and (max-width: 992px) {
    .destinos-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;
    }
    
    .destino-video {
        grid-column: span 2;
        grid-row: span 1;
        min-height: 300px;
    }
    
    .destino-block {
        min-height: 280px;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contato-form-full {
        padding: 30px 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Avaliações Section */
.avaliacoes-section {
    padding: 40px 0;
    margin-top: -40px;
    background: white;
}

.rating-summary {
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

.rating-overall {
    text-align: center;
    background-color: white;
    padding: 40px 60px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.rating-number {
    font-size: 5rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1;
    margin-bottom: 15px;
}

.rating-stars {
    color: #FFD700;
    font-size: 2rem;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.rating-count {
    color: #5a6c7d;
    font-size: 1.1rem;
    font-weight: 300;
}


.rating-form-container {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    margin: 30px 0;
    text-align: center;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.rating-header h3 {
    margin: 0 0 8px 0;
    color: #2c3e50;
    font-size: 1.5rem;
    font-weight: 600;
}

.rating-instruction {
    color: #666;
    margin: 0 0 25px 0;
    font-size: 0.95rem;
    font-weight: 400;
}

.simple-star-rating {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 0 0 20px 0;
}

.simple-star-rating .star {
    font-size: 2rem;
    color: #e0e0e0;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    user-select: none;
    position: relative;
    padding: 5px;
}

.simple-star-rating .star:hover {
    color: #ffd700;
    transform: scale(1.15);
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.4));
}

.simple-star-rating .star.active {
    color: #ffd700;
    transform: scale(1.1);
    filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.3));
}

.simple-star-rating .star:hover ~ .star {
    color: #e0e0e0;
    transform: scale(1);
}

.simple-star-rating .star:active {
    transform: scale(0.95);
}

.rating-feedback {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    color: #155724;
    border-radius: 25px;
    border: 1px solid #c3e6cb;
    font-weight: 500;
    font-size: 0.9rem;
    animation: slideInUp 0.4s ease-out;
}

.rating-feedback i {
    font-size: 1.1rem;
    color: #28a745;
}

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

.rating-form .form-group {
    margin-bottom: 25px;
}

/* Responsivo para Avaliações */
@media (max-width: 768px) {
    .rating-overall {
        padding: 30px 40px;
    }
    
    .rating-number {
        font-size: 4rem;
    }
    
    .rating-stars {
        font-size: 1.5rem;
    }
    
    .rating-form-container {
        padding: 25px 20px;
        margin: 20px 0;
    }
    
    .rating-header h3 {
        font-size: 1.3rem;
    }
    
    .simple-star-rating .star {
        font-size: 1.8rem;
        padding: 3px;
    }
    
    .rating-feedback {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
}


.rating-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.rating-form input,
.rating-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.rating-form input:focus,
.rating-form textarea:focus {
    outline: none;
    border-color: #9beb24;
    box-shadow: 0 0 0 3px rgba(155, 235, 36, 0.1);
}

.simple-star-rating {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 30px 0;
}

.simple-star-rating .star {
    font-size: 3rem;
    color: #ddd;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}

.simple-star-rating .star:hover,
.simple-star-rating .star.active {
    color: #ffd700;
    transform: scale(1.1);
}

.simple-star-rating .star:hover ~ .star {
    color: #ddd;
}

.rating-instruction {
    text-align: center;
    color: #666;
    margin-bottom: 20px;
    font-style: italic;
}

.rating-feedback {
    text-align: center;
    margin-top: 20px;
    padding: 15px;
    background: #d4edda;
    color: #155724;
    border-radius: 8px;
    border: 1px solid #c3e6cb;
}

.recent-ratings {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.recent-ratings h3 {
    text-align: center;
    margin-bottom: 30px;
    color: #2c3e50;
    font-size: 1.8rem;
}

.ratings-list {
    display: grid;
    gap: 20px;
}

.rating-item {
    padding: 20px;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    background: #f8f9fa;
}

.rating-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.rating-item-name {
    font-weight: 600;
    color: #2c3e50;
}

.rating-item-stars {
    display: flex;
    gap: 2px;
}

.rating-item-stars i {
    color: #ffd700;
    font-size: 0.9rem;
}

.rating-item-date {
    color: #666;
    font-size: 0.9rem;
}

.rating-item-comment {
    color: #555;
    line-height: 1.5;
    margin-top: 10px;
}

/* Responsividade para avaliações */
@media (max-width: 768px) {
    .rating-summary {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 20px;
    }
    
    .rating-number {
        font-size: 3rem;
    }
    
    .rating-form-container,
    .recent-ratings {
        padding: 30px 20px;
    }
    
    .star-rating label {
        font-size: 1.5rem;
    }
}
