/* ===== VILLA ROYAL OPEN MALL - V4 FINAL ===== */

/* Paleta de cores da marca Villa Royal */
:root {
    --primary-magenta: #ED2D91;
    --primary-purple: #6A0C76;
    --primary-orange: #FF7B00;
    --primary-blue: #3A435E;
    --primary-white: #FFFFFF;
    --primary-gray: #F2F2F2;
    
    /* Gradientes */
    --gradient-primary: linear-gradient(135deg, var(--primary-magenta), var(--primary-purple));
    --gradient-secondary: linear-gradient(135deg, var(--primary-orange), var(--primary-magenta));
    --gradient-overlay: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1) 100%);
    
    /* Tipografia */
    --font-family: 'Barlow', sans-serif;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-bold: 700;
    
    /* Espaçamentos */
    --container-max-width: 1200px;
    --section-padding: 80px 0;
    --header-height: 80px;
}

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

body {
    font-family: var(--font-family);
    font-weight: var(--font-weight-regular);
    line-height: 1.6;
    color: var(--primary-blue);
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Mobile - Hidden on Desktop */
.hero-mobile {
    display: none;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(237, 45, 145, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
    padding-top: 10px;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    margin-right: 40px;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

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

.nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--primary-blue);
    font-weight: var(--font-weight-medium);
    font-size: 16px;
    padding: 10px 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-magenta);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

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

.cta-button-header {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--gradient-primary);
    color: var(--primary-white);
    text-decoration: none;
    border-radius: 25px;
    font-weight: var(--font-weight-medium);
    font-size: 14px;
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(237, 45, 145, 0.3);
}

.cta-button-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(237, 45, 145, 0.4);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-blue);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

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

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--primary-white);
    z-index: 1001;
    transition: right 0.3s ease;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-content {
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--primary-gray);
}

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

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary-blue);
    cursor: pointer;
    padding: 5px;
}

.mobile-nav-list {
    list-style: none;
    margin-bottom: 30px;
}

.mobile-nav-list li {
    margin-bottom: 15px;
}

.mobile-nav-link {
    display: block;
    text-decoration: none;
    color: var(--primary-blue);
    font-weight: var(--font-weight-medium);
    font-size: 18px;
    padding: 15px 0;
    border-bottom: 1px solid var(--primary-gray);
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: var(--primary-magenta);
}

.mobile-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 25px;
    background: var(--gradient-primary);
    color: var(--primary-white);
    text-decoration: none;
    border-radius: 25px;
    font-weight: var(--font-weight-medium);
    font-size: 16px;
    margin-top: auto;
    transition: all 0.3s ease;
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding-bottom: 80px;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100vw;
    min-height: 100vh;
    width: 100vw;
    height: 56.25vw; /* 16:9 aspect ratio */
    object-fit: cover;
    transform: translate(-50%, -50%) scale(1.05);
    border: none;
    pointer-events: none;
    z-index: 1;
}

/* Fallback para garantir fullscreen */
@media (max-aspect-ratio: 16/9) {
    .hero-video {
        height: 100vh;
        width: 177.78vh; /* 16:9 aspect ratio */
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0.3) 30%,
        rgba(0, 0, 0, 0.15) 60%,
        rgba(0, 0, 0, 0.05) 80%,
        transparent 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    text-align: center;
    color: var(--primary-white);
}

.hero-logo {
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-out;
}

.hero-logo img {
    height: 80px;
    width: auto;
    filter: brightness(0) invert(1);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 20px;
    line-height: 1.2;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: var(--font-weight-regular);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
    background: var(--gradient-secondary);
    color: var(--primary-white);
    text-decoration: none;
    border-radius: 30px;
    font-weight: var(--font-weight-bold);
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 123, 0, 0.4);
    animation: fadeInUp 1s ease-out 0.6s both;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 123, 0, 0.5);
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: var(--section-padding);
    background: var(--primary-white);
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary-blue);
    margin-bottom: 20px;
    line-height: 1.3;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--primary-blue);
    opacity: 0.8;
    max-width: 800px;
    margin: 0 auto;
}

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

.feature-card {
    background: var(--primary-white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: var(--gradient-primary);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(237, 45, 145, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    color: var(--primary-white);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--primary-blue);
    opacity: 0.8;
    line-height: 1.6;
}

/* ===== INFRASTRUCTURE SECTION ===== */
.infrastructure-section {
    padding: var(--section-padding);
    background: var(--primary-gray);
}

.infrastructure-carousel {
    position: relative;
}

.carousel-container {
    overflow: hidden;
    border-radius: 20px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.infra-card {
    min-width: calc(33.333% - 20px);
    margin: 0 10px;
    background: var(--primary-white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.infra-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(237, 45, 145, 0.15);
}

.infra-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    color: var(--primary-white);
}

.infra-card h3 {
    font-size: 1.3rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.infra-card p {
    color: var(--primary-blue);
    opacity: 0.8;
    line-height: 1.6;
}

/* ===== PLANTS SECTION ===== */
.plants-section {
    padding: var(--section-padding);
    background: var(--primary-white);
}

.plants-carousel {
    position: relative;
}

.plant-card {
    min-width: calc(33.333% - 20px);
    margin: 0 10px;
    background: var(--primary-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.plant-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(237, 45, 145, 0.15);
}

.plant-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.plant-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.plant-card:hover .plant-image img {
    transform: scale(1.05);
}

.plant-content {
    padding: 30px;
}

.plant-content h3 {
    font-size: 1.4rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.plant-content p {
    color: var(--primary-blue);
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 25px;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--gradient-primary);
    color: var(--primary-white);
    text-decoration: none;
    border-radius: 25px;
    font-weight: var(--font-weight-medium);
    font-size: 14px;
    transition: all 0.3s ease;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(237, 45, 145, 0.3);
}

/* ===== CAROUSEL DOTS ===== */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(58, 67, 94, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background: var(--primary-magenta);
    transform: scale(1.2);
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
    padding: var(--section-padding);
    background: var(--primary-gray);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(237, 45, 145, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

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

/* ===== LOCATION SECTION ===== */
.location-section {
    padding: var(--section-padding);
    background: var(--primary-white);
}

.location-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.location-map {
    width: 100%;
    height: 400px;
    border: none;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.location-card {
    background: var(--primary-white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.location-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary-white);
    flex-shrink: 0;
}

.location-details h3 {
    font-size: 1.3rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.location-details p {
    color: var(--primary-blue);
    opacity: 0.8;
    margin-bottom: 5px;
}

.location-advantages {
    background: var(--primary-white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.location-advantages h3 {
    font-size: 1.3rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.location-advantages ul {
    list-style: none;
}

.location-advantages li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--primary-blue);
    opacity: 0.8;
}

.location-advantages li i {
    color: var(--primary-magenta);
    font-size: 14px;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: var(--section-padding);
    background: var(--gradient-primary);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.2rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary-white);
    margin-bottom: 40px;
    line-height: 1.3;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .cta-button {
    background: var(--primary-white);
    color: var(--primary-magenta);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.cta-section .cta-button:hover {
    background: var(--primary-gray);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.4);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: var(--section-padding);
    background: var(--primary-gray);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--primary-white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(237, 45, 145, 0.15);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary-white);
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.2rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.contact-details p {
    color: var(--primary-blue);
    opacity: 0.8;
}

.contact-form {
    background: var(--primary-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--primary-gray);
    border-radius: 10px;
    font-family: var(--font-family);
    font-size: 16px;
    color: var(--primary-blue);
    background: var(--primary-white);
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: var(--gradient-primary);
    color: var(--primary-white);
    border: none;
    border-radius: 10px;
    font-family: var(--font-family);
    font-weight: var(--font-weight-bold);
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(237, 45, 145, 0.4);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--primary-blue);
    color: var(--primary-white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-logo p {
    opacity: 0.8;
    line-height: 1.6;
    max-width: 400px;
}

.footer-contact h3,
.footer-social h3 {
    font-size: 1.3rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 20px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    opacity: 0.8;
}

.footer-contact-item i {
    width: 20px;
    color: var(--primary-magenta);
}

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.6;
}

.footer-bottom p {
    margin-bottom: 5px;
}

.footer-bottom a {
    color: var(--primary-magenta);
    text-decoration: none;
    font-weight: var(--font-weight-medium);
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--primary-orange);
    text-decoration: underline;
}

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

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .infra-card,
    .plant-card {
        min-width: calc(50% - 15px);
    }
    
    .location-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
        --section-padding: 60px 0;
    }
    
    .nav,
    .cta-button-header {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-section {
        display: none;
    }
    
    .hero-mobile {
        display: block;
        background: white;
    }
    
    .hero-mobile-video {
        width: 100%;
        height: 300px;
        position: relative;
        overflow: hidden;
    }
    
    .hero-mobile-video::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 50px;
        background: linear-gradient(to top, 
            rgba(255, 255, 255, 1) 0%, 
            rgba(255, 255, 255, 0.8) 50%,
            rgba(255, 255, 255, 0) 100%
        );
        pointer-events: none;
        z-index: 10;
    }
    
    .hero-mobile-video iframe {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 100%;
        height: 100%;
        min-width: 100%;
        min-height: 100%;
        transform: translate(-50%, -50%);
        border: none;
        pointer-events: none;
    }
    
    .hero-mobile-content {
        text-align: center;
        padding: 40px 20px;
        background: white;
    }
    
    .hero-mobile-content h1 {
        font-size: 2rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 20px;
        line-height: 1.2;
    }
    
    .hero-mobile-content p {
        font-size: 1.1rem;
        color: #5a6c7d;
        margin-bottom: 30px;
        line-height: 1.5;
    }
    
    .hero-mobile-content .cta-button {
        display: inline-block;
        background: linear-gradient(135deg, #ED2D91, #FF7B00);
        color: white;
        padding: 15px 30px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1.1rem;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(237, 45, 145, 0.3);
    }
    
    .hero-mobile-content .cta-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(237, 45, 145, 0.4);
    }
    
    .hero-overlay {
        background: linear-gradient(
            to top,
            rgba(0, 0, 0, 0.7) 0%,
            rgba(0, 0, 0, 0.5) 40%,
            rgba(0, 0, 0, 0.3) 70%,
            rgba(0, 0, 0, 0.1) 90%,
            transparent 100%
        );
    }
    
    .hero-content {
        padding-bottom: 40px;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 10px;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 20px;
        line-height: 1.3;
    }
    
    .cta-button {
        padding: 12px 24px;
        font-size: 16px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .infra-card,
    .plant-card {
        min-width: 100%;
        margin: 0;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .feature-card,
    .infra-card,
    .plant-card {
        padding: 30px 20px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
}

