/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    font-feature-settings: 'kern' 1, 'liga' 1, 'calt' 1;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Tipografia Responsiva Global */
h1, h2, h3, h4, h5, h6 {
    font-feature-settings: 'kern' 1, 'liga' 1, 'calt' 1;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Classe para títulos especiais */
.section-title {
    font-size: clamp(2rem, 4.5vw, 4rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 5rem;
    color: #1a1a1a;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    background: linear-gradient(135deg, #333 0%, #007bff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #007bff, #00d4ff);
    border-radius: 2px;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 50, 100, 0.95) 100%);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header.scrolled {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 50, 100, 0.98) 100%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(0, 123, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-logo img {
    height: 60px;
    width: auto;
    filter: brightness(1.2);
    transition: transform 0.3s ease;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #007bff, #00d4ff);
    border-radius: 25px;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: -1;
    box-shadow: 0 0 20px rgba(0, 123, 255, 0.3);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
    z-index: -1;
}

.nav-menu a:hover::before {
    opacity: 1;
}

.nav-menu a:hover::after {
    width: 100px;
    height: 100px;
}

.nav-menu a:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
}

.nav-menu a.active {
    background: linear-gradient(135deg, #007bff, #00d4ff);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.nav-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: #ffffff;
    margin: 4px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-6px, 6px);
    background: #00d4ff;
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-6px, -6px);
    background: #00d4ff;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-mobile {
    display: none;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: center;
}

.hero-content {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    z-index: 1;
    width: 100%;
}

.hero-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 15px;
    backdrop-filter: blur(15px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    text-align: center;
    max-width: 450px;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-form h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.3;
}

.hero-form p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.5;
    font-weight: 500;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.contact-form input {
    padding: 0.9rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

.contact-form input:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.15);
    transform: translateY(-1px);
    background: #ffffff;
}

/* Estilos para campos com erro */
.contact-form input.error {
    border-color: #e74c3c !important;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.15) !important;
    background-color: #fdf2f2;
}

.contact-form input.error:focus {
    border-color: #e74c3c !important;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.25) !important;
}

/* Estilos para campos válidos */
.contact-form input.valid {
    border-color: #27ae60 !important;
    box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.15) !important;
    background-color: #f2f9f4;
}

/* Transição suave para mudanças de estado */
.contact-form input {
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, #128c7e, #25d366);
}

.btn-primary svg {
    width: 18px;
    height: 18px;
}

/* Confira Section */
.confira {
    padding: 8rem 0;
    background: #ffffff;
}

.confira h2 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 4rem;
    color: #1a1a1a;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    background: linear-gradient(135deg, #333 0%, #007bff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.confira h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #007bff, #00d4ff);
    border-radius: 2px;
}

.confira-gallery {
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.gallery-item.main-image {
    grid-row: 1 / 3;
}

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

.gallery-item span {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
}


/* Lazer Section */
.lazer {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.lazer h2 {
    font-size: clamp(2.2rem, 4.5vw, 4rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 5rem;
    color: #1a1a1a;
    line-height: 1.2;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    background: linear-gradient(135deg, #333 0%, #007bff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    padding: 0 1rem;
}

.lazer h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(135deg, #007bff, #00d4ff);
    border-radius: 2px;
}

.lazer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.lazer-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lazer-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.lazer-item {
    cursor: pointer;
    transition: all 0.3s ease;
}

.lazer-item:hover::after {
    content: '🔍 Clique para ampliar';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 10;
}

.lazer-item:hover::after {
    opacity: 1;
}

.lazer-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.lazer-item h3 {
    padding: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    text-align: center;
}

/* Diferenciais Section */
.diferenciais {
    padding: 8rem 0;
    background: #ffffff;
}

.diferenciais h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 5rem;
    color: #1a1a1a;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    background: linear-gradient(135deg, #333 0%, #007bff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.diferenciais h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 4px;
    background: linear-gradient(135deg, #007bff, #00d4ff);
    border-radius: 2px;
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.diferenciais-card {
    background: white;
    border-radius: 20px;
    padding: 3rem 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid #f8f9fa;
    position: relative;
    overflow: hidden;
}

.diferenciais-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #007bff, #00d4ff);
}

.diferenciais-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 123, 255, 0.15);
    border-color: #007bff;
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border: 2px solid #dee2e6;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.diferenciais-card:hover .card-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, #007bff, #00d4ff);
    border-color: #007bff;
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.25);
}

.diferenciais-card:hover .card-icon svg {
    color: white;
}

.card-icon svg {
    width: 35px;
    height: 35px;
    color: #6c757d;
}

.diferenciais-card h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 2rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.diferenciais-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.diferenciais-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.2rem;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
}

.diferenciais-item:hover {
    background: rgba(0, 123, 255, 0.05);
    border-color: #007bff;
    transform: translateX(5px);
}

.check-icon {
    width: 28px;
    height: 28px;
    background: #f8f9fa;
    color: #6c757d;
    border: 2px solid #dee2e6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.diferenciais-item:hover .check-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, #4caf50, #8bc34a);
    color: white;
    border-color: #4caf50;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.4);
}

.diferenciais-item span:last-child {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    line-height: 1.5;
}

.sustentabilidade {
    background: linear-gradient(135deg, #e8f5e8 0%, #c8e6c9 100%);
    padding: 4rem 3rem;
    border-radius: 25px;
    text-align: center;
    border: 1px solid rgba(76, 175, 80, 0.2);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.1);
}

.sustentabilidade::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="leaf" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="2" fill="%234caf50" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23leaf)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.sustentabilidade-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.sustentabilidade-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border: 2px solid #dee2e6;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.sustentabilidade-icon svg {
    width: 30px;
    height: 30px;
    color: #6c757d;
}

.sustentabilidade h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #2e7d32;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

.sustentabilidade-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.sustentabilidade-item {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    font-weight: 500;
    color: #333;
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.15);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.sustentabilidade-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #4caf50, #8bc34a);
}

.sustentabilidade-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(76, 175, 80, 0.25);
    border-color: #4caf50;
}

.sustentabilidade-icon-small {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #6c757d;
    transition: all 0.3s ease;
}

.sustentabilidade-item:hover .sustentabilidade-icon-small {
    transform: scale(1.1);
    color: #4caf50;
}

.sustentabilidade-item span {
    font-size: 1rem;
    text-align: center;
    line-height: 1.5;
    font-weight: 600;
    color: #2e7d32;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Plantas Section */
.plantas {
    padding: 8rem 0;
    background: #ffffff;
}

.plantas h2 {
    font-size: clamp(2.2rem, 4.5vw, 4rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 5rem;
    color: #1a1a1a;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    background: linear-gradient(135deg, #333 0%, #007bff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.plantas h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #007bff, #00d4ff);
    border-radius: 2px;
}

.plantas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.planta-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.planta-item:hover {
    transform: translateY(-5px);
}

.planta-item {
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.planta-item:hover::after {
    content: '🔍 Clique para ampliar';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 10;
}

.planta-item:hover::after {
    opacity: 1;
}

.planta-item h3 {
    padding: 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    text-align: center;
    background: #007bff;
    color: white;
}

.planta-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/* Planta Master Section */
.planta-master {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.planta-master h2 {
    font-size: clamp(2.2rem, 4.5vw, 4rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 5rem;
    color: #1a1a1a;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    background: linear-gradient(135deg, #333 0%, #007bff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.planta-master h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #007bff, #00d4ff);
    border-radius: 2px;
}

.planta-master-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.planta-master-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.planta-master-image:hover {
    transform: scale(1.02);
}

.planta-master-image img {
    width: 100%;
    height: auto;
    display: block;
}

.planta-overlay {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.planta-master-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.planta-master-info p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.planta-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: #007bff;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Local Section */
.local {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.local h2 {
    font-size: clamp(2.2rem, 4.5vw, 4rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 5rem;
    color: #1a1a1a;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    background: linear-gradient(135deg, #333 0%, #007bff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.local h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #007bff, #00d4ff);
    border-radius: 2px;
}

.mapa {
    margin-bottom: 3rem;
}

.mapa iframe {
    width: 100%;
    height: 450px;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: none;
}

.local-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.local-details h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.local-details p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

.local-details ul {
    list-style: none;
    margin-top: 1rem;
}

.local-details li {
    padding: 0.5rem 0;
    font-size: 1rem;
    color: #333;
    font-weight: 500;
}


/* Realização Section */
.realizacao {
    padding: 8rem 0;
    background: #ffffff;
}

.realizacao h2 {
    font-size: clamp(2.2rem, 4.5vw, 4rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 5rem;
    color: #1a1a1a;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    background: linear-gradient(135deg, #333 0%, #007bff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.realizacao h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #007bff, #00d4ff);
    border-radius: 2px;
}

.realizacao-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    text-align: center;
    margin-bottom: 3rem;
}

.realizacao-item img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.realizacao-item:hover img {
    transform: scale(1.1);
}

.realizacao-item {
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.realizacao-item:hover::after {
    content: '🔍 Clique para ampliar';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 10;
}

.realizacao-item:hover::after {
    opacity: 1;
}

.realizacao-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
}

.realizacao-info {
    text-align: center;
}

.realizacao-info p {
    font-size: 1.2rem;
    font-weight: 600;
    color: #007bff;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 3rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}


.footer-dev p {
    font-size: 1rem;
    color: #ccc;
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1000;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-btn img {
    width: 35px;
    height: 35px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 50, 100, 0.98) 100%);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 3rem;
        transition: left 0.4s ease;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu a {
        margin: 1rem 0;
        padding: 1rem 2rem;
        font-size: 1.2rem;
        border-radius: 30px;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .nav-menu a:hover {
        background: linear-gradient(135deg, #007bff, #00d4ff);
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(0, 123, 255, 0.4);
    }

    .nav-toggle {
        display: flex;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .hero-form {
        max-width: 100%;
        padding: 2rem;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.3);
        margin: 1rem;
    }

    .hero-form h2 {
        font-size: 2rem;
    }

    .hero-form p {
        font-size: 1rem;
    }

    .hero-desktop {
        display: none;
    }

    .hero-mobile {
        display: block;
        width: 100%;
        height: 100vh;
        object-fit: cover;
        object-position: center;
    }
    
    .hero-background {
        height: 100vh;
    }
    
    .hero-background img.hero-desktop {
        display: none;
    }
    
    .hero-background img.hero-mobile {
        display: block;
        width: 100%;
        height: 100vh;
        object-fit: cover;
        object-position: center;
    }

    .confira h2,
    .lazer h2,
    .diferenciais h2,
    .plantas h2,
    .local h2,
    .realizacao h2 {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        margin-bottom: 3rem;
    }

    .diferenciais-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .diferenciais-card {
        padding: 2rem;
    }

    .sustentabilidade-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .sustentabilidade-item {
        padding: 1.2rem;
    }

    .sustentabilidade ul {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .whatsapp-btn {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-btn img {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .nav-container {
        padding: 1rem;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-form {
        padding: 1.5rem;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(25px);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
        border: 1px solid rgba(255, 255, 255, 0.4);
        margin: 0.5rem;
        border-radius: 20px;
    }
    
    /* Garantir que a imagem mobile ocupe toda a altura em telas pequenas */
    .hero-background img.hero-mobile {
        width: 100%;
        height: 100vh;
        object-fit: cover;
        object-position: center;
        display: block;
    }
    
    .hero-background {
        height: 100vh;
    }

    .confira h2,
    .lazer h2,
    .diferenciais h2,
    .plantas h2,
    .local h2,
    .realizacao h2 {
        font-size: clamp(1.5rem, 7vw, 2rem);
        margin-bottom: 2.5rem;
    }

    .lazer-grid,
    .plantas-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .gallery-item.main-image {
        grid-row: auto;
    }

    .planta-master-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .planta-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Melhorias específicas para mobile */
@media (max-width: 768px) {
    .hero {
        height: 100vh;
        min-height: 100vh;
        position: relative;
        overflow: hidden;
    }
    
    .hero-background {
        height: 100vh;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        z-index: -1;
    }
    
    .hero-background::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(
            135deg,
            rgba(0, 123, 255, 0.1) 0%,
            rgba(0, 212, 255, 0.05) 50%,
            rgba(255, 255, 255, 0.1) 100%
        );
        z-index: 1;
    }
    
    .hero-content {
        position: relative;
        z-index: 2;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-form {
        position: relative;
        z-index: 3;
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
    }
}

.local-info {
    grid-template-columns: 1fr;
    gap: 2rem;
}

/* Modal para ampliar imagens */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    position: relative;
    margin: auto;
    padding: 0;
    width: 90%;
    max-width: 1200px;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    animation: zoomIn 0.3s ease;
}

.modal-content img {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-caption {
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem;
    border-radius: 0 0 10px 10px;
    margin-top: -5px;
}

.modal-caption h3 {
    color: #333;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modal-caption p {
    color: #666;
    font-size: 1rem;
    margin: 0;
}

.close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

/* Animações do modal */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomIn {
    from { 
        opacity: 0;
        transform: translateY(-50%) scale(0.8);
    }
    to { 
        opacity: 1;
        transform: translateY(-50%) scale(1);
    }
}

/* Responsividade do modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 0 2.5%;
    }
    
    .modal-content img {
        max-height: 70vh;
    }
    
    .modal-caption {
        padding: 1rem;
    }
    
    .modal-caption h3 {
        font-size: 1.2rem;
    }
    
    .close {
        top: -35px;
        font-size: 30px;
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .modal-content {
        width: 98%;
        margin: 0 1%;
    }
    
    .modal-content img {
        max-height: 60vh;
    }
    
    .modal-caption {
        padding: 0.8rem;
    }
    
    .modal-caption h3 {
        font-size: 1rem;
    }
    
    .close {
        top: -30px;
        font-size: 25px;
        width: 35px;
        height: 35px;
    }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Scroll suave */
html {
    scroll-behavior: smooth;
}

/* Melhorias de acessibilidade */
.btn-primary:focus,
.contact-form input:focus {
    outline: 2px solid #007bff;
    outline-offset: 2px;
}

/* Loading states */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Hover effects melhorados */
.lazer-item,
.planta-item,
.projeto-item,
.realizacao-item {
    transition: all 0.3s ease;
}

.lazer-item:hover,
.planta-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}
