:root {
    --primary: #3e8b33;
    --primary-light: #8CC63F;
    --primary-dark: #1B4332;
    --accent: #FFB800;
    --brown: #8B4513;
    --text-dark: #333333;
    --text-light: #666666;
    --white: #FFFFFF;
    --background: #F5F9F7;
    --azul: #219BEF;
    --azul-oscuro: #176BAA;
    --azul-claro: #61B7F1;
    --azul-hover: #1a7cc0;
    --azul-extra-claro: #EBF6FF;
    --negro: #000000;
    --gris-claro: #f5f5f5;
    --gris-oscuro: #333333;
    --blanco: #ffffff;
    --verde: #23a455;
    --shadow: 0 4px 6px rgba(45, 90, 39, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}


body {
    background-color: var(--background);
    color: var(--text-dark);
    line-height: 1.6;
}

.showcase-media {
    position: relative;
    width: 90%;
    z-index: 2;
}

.feature-video {
    margin-top: -10%;
    width: 120%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}


.navbar {
    background: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.logo {
    height: 40px;
    transition: var(--transition);
}

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

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

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

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

.hero {
    padding: 8rem 2rem 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
    background-image: url('images/bg-header-home.jpg');
}

.avotex-logo {
    width: 200px;
    margin-bottom: 2rem;
    animation: floatAnimation 3s ease-in-out infinite;
}

@keyframes floatAnimation {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.animate-text {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.animate-text-delay {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.3s;
}

.animate-fade-in {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
    animation-delay: 0.5s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.primary-btn, .secondary-btn {
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.primary-btn {
    background: var(--primary);
    color: var(--white);
}

.secondary-btn {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.primary-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.secondary-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

/* AI Detection Section */
.ai-detection {
    background-color: var(--verde);
    padding: 6rem 2rem;
    color: var(--white);
    margin: 4rem 0;
}

.ai-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.detection-list {
    list-style: none;
    margin-top: 2rem;
}

.detection-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transform: translateX(-20px);
    opacity: 0;
    animation: slideInRight 0.5s ease forwards;
}

.detection-list li:nth-child(2) { animation-delay: 0.2s; }
.detection-list li:nth-child(3) { animation-delay: 0.4s; }
.detection-list li:nth-child(4) { animation-delay: 0.6s; }

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

.detection-icon {
    font-size: 2rem;
    margin-right: 1rem;
}

.scan-animation {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.scan-image {
    width: 100%;
    display: block;
    border-radius: 20px;
}

.scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent);
    box-shadow: 0 0 10px var(--accent);
    animation: scan 2s linear infinite;
}

.scan-dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, var(--accent) 1px, transparent 1px) 0 0/20px 20px;
    opacity: 0.3;
    animation: fade 2s linear infinite;
}

@keyframes scan {
    from { top: 0; }
    to { top: 100%; }
}

@keyframes fade {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

/* Stats Section */
.stats {
    padding: 4rem 2rem;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition);
}

.stat-item.visible {
    transform: translateY(0);
    opacity: 1;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.stat-label {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Features Section */
.features {
    padding: 4rem 2rem;
    background: var(--white);
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.demo {
    padding: 4rem 2rem;
    width: 100%;
    background-color: var(--verde);
    color: var(--white);
}

.demo-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.demo-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step {
    display: flex;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    transform: translateX(-20px);
    animation: slideIn 0.5s ease forwards;
}

.step:nth-child(2) {
    animation-delay: 0.2s;
}

.step:nth-child(3) {
    animation-delay: 0.4s;
}

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

.step-number {
    background: var(--white);
    color: var(--primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.gallery-container {
    position: relative;
}

.gallery-main {
    width: 100%;
    height: 400px;
    border-radius: 15px;
    margin-bottom: 1rem;
    object-fit: cover;
    cursor: zoom-in;
    transition: var(--transition);
}

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

.gallery-thumbs {
    display: flex;
    gap: 1rem;
}

.thumb {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    cursor: pointer;
    opacity: 0.6;
    transition: var(--transition);
    object-fit: cover;
}

.thumb.active, .thumb:hover {
    opacity: 1;
    border: 2px solid var(--primary);
}

.pricing {
    padding: 4rem 2rem;
    background: var(--background);
    background-image: url(images/209.jpg);
    height: 1200px;
}

.pricing h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 3rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    position: relative;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
}

.pricing-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.pricing-card.featured {
    border: 2px solid var(--primary);
    transform: scale(1.05);
}

.featured-tag {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--primary);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.price {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin: 1.5rem 0;
}

.price span {
    font-size: 1rem;
    color: var(--text-light);
}

.features-list {
    list-style: none;
    margin: 2rem 0;
}

.features-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.features-list li::before {
    content: "✓";
    color: var(--primary);
    position: absolute;
    left: 0;
}

.buy-btn {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.buy-btn.primary {
    background: var(--primary);
    color: var(--white);
}

.buy-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.contact {
    padding: 4rem 2rem;
    background: var(--white);
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-form {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #eee;
    border-radius: 10px;
    transition: var(--transition);
}

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

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

.submit-btn {
    background: var(--primary);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
}

.submit-btn:hover {
    background: var(--primary-dark);
}

.footer2 {
    background-image: url(images/freepik__the-style-is-3d-model-with-octane-render-volumetri__72669.jpeg);
    color: var(--blanco);
    padding: 60px 20px 30px;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
    height: 500px;
}

.footer2 {
  position: relative;
  background-image: url(images/freepik__the-style-is-3d-model-with-octane-render-volumetri__72669.jpeg);
  background-size: cover;
  background-position: center;
  color: white;
  padding: 60px 20px 30px;
  margin-top: 60px;
  height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.footer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* oscurece ligeramente */
  z-index: 0;
}

.footer-content {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  z-index: 1;
  position: relative;
}

.footer-column {
  min-width: 180px;
}

.footer-column h3 {
  margin-bottom: 10px;
  font-size: 18px;
  color: #fff;
}

.footer-column p {
  margin: 5px 0;
  color: #ddd;
}

.footer-copy {
  margin-top: 40px;
  z-index: 1;
  position: relative;
  font-size: 14px;
  color: #ccc;
}


.footer-content2 {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
}

.footer-section2 h3 {
    margin-bottom: 25px;
    color: var(--primary-light);
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-section2 h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--white);
}

.footer-section2 ul {
    list-style: none;
}

.footer-section2 ul li {
    margin-bottom: 15px;
}

.footer-section2 a {
    color: var(--blanco);
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transicion);
    display: inline-block;
    padding: 5px 0;
}

.footer-section2 a:hover {
    opacity: 1;
    color: var(--azul-claro);
    transform: translateX(5px);
}

.footer-bottom2{
    max-width: 1200px;
    margin: 50px auto 0;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    opacity: 0.8;
    font-size: 0.9rem;
}
.mobile-app {
    padding: 6rem 2rem;
    background: linear-gradient(var(--verde), #e3c932);
    color: var(--white);
    overflow: hidden;
}

.app-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.app-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.app-info p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.app-features {
    list-style: none;
    margin-bottom: 2rem;
}

.app-features li {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transform: translateX(-20px);
    opacity: 0;
    animation: slideInRight 0.5s ease forwards;
}

.app-features li:nth-child(2) { animation-delay: 0.2s; }
.app-features li:nth-child(3) { animation-delay: 0.4s; }
.app-features li:nth-child(4) { animation-delay: 0.6s; }

.app-feature-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
}

.app-store-badges {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.store-badge-link img {
    height: 50px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.store-badge-link:hover img {
    transform: translateY(-5px);
}

.phone-mockup {
    position: relative;
    width: 300px;
    height: 600px;
    margin: 0 auto;
    border-radius: 40px;
    background: var(--white);
    padding: 15px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    transform: rotate(-5deg);
    overflow: hidden;
}

.app-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
}

.scan-animation-mobile {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
}

.app-badges {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
}

.app-badge img {
    height: 40px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.app-badge:hover img {
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 6rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .demo-content {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }

    .ai-content {
        grid-template-columns: 1fr;
    }

    .stats-container {
        grid-template-columns: 1fr;
    }

    .app-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .app-features li {
        justify-content: center;
    }

    .app-store-badges {
        justify-content: center;
    }

    .phone-mockup {
        width: 250px;
        height: 500px;
        margin-top: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .pricing-card.featured {
        transform: none;
    }

    .detection-list li {
        padding: 0.8rem;
    }

    .detection-icon {
        font-size: 1.5rem;
    }

    .nav-links {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 0px !important; 
        padding: 0;
        margin: 0;
        list-style: none;
        height: 40px;
    }

    .nav-links a {
        font-size: 2.8vw !important;
    }

    .navbar{
        height: 150px;
    }

    .nav-container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .logo{
        margin-right: 20px;
        margin-bottom: 0px;
    }

    .avotex-logo{
        margin-top: 100px;
    }

    .imagenPrincipal{
        margin-top: -50px;
    }

    .stats {
        padding: 4rem 2rem;
        margin-top: 0px !important;
    }

    .stats-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: nowrap;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        text-align: center;
        justify-content: center;
    }

    .stat-item {
        padding: 20px;
        border-radius: 20px;
        box-shadow: var(--shadow);
        transform: translateY(20px);
        opacity: 0;
        transition: var(--transition);
    }

    .stat-item.visible {
        transform: translateY(0);
        opacity: 1;
    }

    .stat-number {
        font-size: 5vw;
        font-weight: 700;
        color: var(--primary);
        margin-bottom: 1rem;
    }

    .stat-label {
        color: var(--text-light);
        font-size: 2.5vw;
    }

    .footer2 {
    position: relative;
    background-image: url(images/freepik__the-style-is-3d-model-with-octane-render-volumetri__72669.jpeg);
    background-size: contain;
    background-repeat: repeat;
    background-position: center;
    color: white;
    padding: 60px 20px 30px;
    margin-top: 0px;
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 250px;
    }

    .footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); 
    z-index: 0;
    }

    .footer-content {
    display: flex;
    gap: 5px;
    justify-content: center;
    flex-wrap: wrap;
    z-index: 1;
    position: relative;
    }

    .footer-column {
    min-width: 90px;
    flex: 1 1 90px;  
    max-width: 100px;  
    }

    .footer-column h3 {
    margin-bottom: 10px;
    font-size: 18px;
    color: #fff;
    }

    .footer-column p {
    margin: 5px 0;
    color: #ddd;
    }

    .footer-copy {
    margin-top: 40px;
    z-index: 1;
    position: relative;
    font-size: 12px;
    color: #ccc;
    }

    .contact {
    padding: 4rem 2rem;
    background: var(--white);
    margin-top: 700px;
    }

    .contact-content {
        max-width: 600px;
        margin: 0 auto;
        text-align: center;
    }

    .contact-form {
        margin-top: 2rem;
    }

    .form-group {
        margin-bottom: 1.5rem;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 1rem;
        border: 2px solid #eee;
        border-radius: 10px;
        transition: var(--transition);
    }

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

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

    .submit-btn {
        background: var(--primary);
        color: var(--white);
        padding: 1rem 2rem;
        border: none;
        border-radius: 25px;
        cursor: pointer;
        transition: var(--transition);
    }

    .submit-btn:hover {
        background: var(--primary-dark);
    }
}

@media screen  and (min-device-height: 650px) and (max-device-height: 700px) {
        html, body {
        overflow-x: hidden;
    }

    * {
        box-sizing: border-box;
    }

    .hero {
    padding: 8rem 2rem 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin: 0 auto;
    align-items: center;
    background-image: url('images/bg-header-home.jpg');
    width: 100%;
    }

    .demo {
    padding: 4rem 2rem;
    width: 100%;
    background-color: var(--verde);
    color: var(--white);
    }

    .demo-content {
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }

    .demo-steps {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .gallery-container {
    position: relative;
    }

    .gallery-main {
        width: 95%;
        height: 300px;
        border-radius: 15px;
        margin-bottom: 1rem;
        object-fit: cover;
        cursor: zoom-in;
        transition: var(--transition);
    }

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

    .gallery-thumbs {
        display: flex;
        gap: 5px;
    }

    .thumb {
        width: 80px;
        height: 80px;
        border-radius: 10px;
        cursor: pointer;
        opacity: 0.6;
        transition: var(--transition);
        object-fit: cover;
    }

    .thumb.active, .thumb:hover {
        opacity: 1;
        border: 2px solid var(--primary);
    }

    .hero {
        padding: 8rem 2rem 4rem;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        max-width: 1200px;
        margin: 0 auto;
        margin-left: 30px;
        background-image: url('images/bg-header-home.jpg');
    }

    .contact {
    padding: 4rem 2rem;
    background: var(--white);
    margin-top: 750px;
    }

    .contact-content {
        max-width: 600px;
        margin: 0 auto;
        text-align: center;
    }

    .contact-form {
        margin-top: 2rem;
    }

      .nav-links a {
        font-size: 2.7vw !important;
    }

     .footer2 {
    position: relative;
    background-image: url(images/freepik__the-style-is-3d-model-with-octane-render-volumetri__72669.jpeg);
    background-size: contain;
    background-repeat: repeat;
    background-position: center;
    color: white;
    padding: 60px 20px 30px;
    margin-top: 0px;
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 250px;
    }

    .footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); 
    z-index: 0;
    }

    .footer-content {
    display: flex;
    gap: 5px;
    justify-content: center;
    flex-wrap: wrap;
    z-index: 1;
    position: relative;
    }

    .footer-column {
    min-width: 40px;
    flex: 1 1 40px;  
    max-width: 50px;  
    }

    .footer-column h3 {
    margin-bottom: 10px;
    font-size: 12px;
    color: #fff;
    }

    .footer-column p {
    margin: 5px 0;
    font-size: 10px;
    color: #ddd;
    }

    .price{
        font-size: 25px;
    }
}

@media screen  and (min-device-height: 800px) and (max-device-height: 850px) {
        html, body {
        overflow-x: hidden;
    }

    * {
        box-sizing: border-box;
    }

    .hero {
    padding: 8rem 2rem 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin: 0 auto;
    align-items: center;
    background-image: url('images/bg-header-home.jpg');
    width: 100%;
    }

    .demo {
    padding: 4rem 2rem;
    width: 100%;
    background-color: var(--verde);
    color: var(--white);
    }

    .demo-content {
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }

    .demo-steps {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .gallery-container {
    position: relative;
    }

    .gallery-main {
        width: 95%;
        height: 300px;
        border-radius: 15px;
        margin-bottom: 1rem;
        object-fit: cover;
        cursor: zoom-in;
        transition: var(--transition);
    }

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

    .gallery-thumbs {
        display: flex;
        gap: 5px;
    }

    .thumb {
        width: 80px;
        height: 80px;
        border-radius: 10px;
        cursor: pointer;
        opacity: 0.6;
        transition: var(--transition);
        object-fit: cover;
    }

    .thumb.active, .thumb:hover {
        opacity: 1;
        border: 2px solid var(--primary);
    }

    .hero {
        padding: 8rem 2rem 4rem;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        max-width: 1200px;
        margin: 0 auto;
        margin-left: 30px;
        background-image: url('images/bg-header-home.jpg');
    }

    .contact {
    padding: 4rem 2rem;
    background: var(--white);
    margin-top: 750px;
    }

    .contact-content {
        max-width: 600px;
        margin: 0 auto;
        text-align: center;
    }

    .contact-form {
        margin-top: 2rem;
    }

      .nav-links a {
        font-size: 2.7vw !important;
    }

     .footer2 {
    position: relative;
    background-image: url(images/freepik__the-style-is-3d-model-with-octane-render-volumetri__72669.jpeg);
    background-size: contain;
    background-repeat: repeat;
    background-position: center;
    color: white;
    padding: 60px 20px 30px;
    margin-top: 0px;
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 250px;
    }

    .footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); 
    z-index: 0;
    }

    .footer-content {
    display: flex;
    gap: 5px;
    justify-content: center;
    flex-wrap: wrap;
    z-index: 1;
    position: relative;
    }

    .footer-column {
    min-width: 40px;
    flex: 1 1 40px;  
    max-width: 50px;  
    }

    .footer-column h3 {
    margin-bottom: 10px;
    font-size: 12px;
    color: #fff;
    }

    .footer-column p {
    margin: 5px 0;
    font-size: 10px;
    color: #ddd;
    }

    .price{
        font-size: 25px;
    }
}

@media screen and (pointer: coarse) and (max-device-width: 480px) and (min-device-height: 850px) and (max-device-height: 950px) {
        html, body {
        overflow-x: hidden;
    }

    * {
        box-sizing: border-box;
    }

    .hero {
    padding: 8rem 2rem 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin: 0 auto;
    align-items: center;
    background-image: url('images/bg-header-home.jpg');
    width: 100%;
    }

    .demo {
    padding: 4rem 2rem;
    width: 100%;
    background-color: var(--verde);
    color: var(--white);
    }

    .demo-content {
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }

    .demo-steps {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .gallery-container {
    position: relative;
    }

    .gallery-main {
        width: 95%;
        height: 300px;
        border-radius: 15px;
        margin-bottom: 1rem;
        object-fit: cover;
        cursor: zoom-in;
        transition: var(--transition);
    }

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

    .gallery-thumbs {
        display: flex;
        gap: 5px;
    }

    .thumb {
        width: 80px;
        height: 80px;
        border-radius: 10px;
        cursor: pointer;
        opacity: 0.6;
        transition: var(--transition);
        object-fit: cover;
    }

    .thumb.active, .thumb:hover {
        opacity: 1;
        border: 2px solid var(--primary);
    }

    .hero {
        padding: 8rem 2rem 4rem;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        max-width: 1200px;
        margin: 0 auto;
        margin-left: 30px;
        background-image: url('images/bg-header-home.jpg');
    }

    .contact {
    padding: 4rem 2rem;
    background: var(--white);
    margin-top: 750px;
    }

    .contact-content {
        max-width: 600px;
        margin: 0 auto;
        text-align: center;
    }

    .contact-form {
        margin-top: 2rem;
    }

      .nav-links a {
        font-size: 2.7vw !important;
    }

     .footer2 {
    position: relative;
    background-image: url(images/freepik__the-style-is-3d-model-with-octane-render-volumetri__72669.jpeg);
    background-size: contain;
    background-repeat: repeat;
    background-position: center;
    color: white;
    padding: 60px 20px 30px;
    margin-top: 0px;
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 250px;
    }

    .footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); 
    z-index: 0;
    }

    .footer-content {
    display: flex;
    gap: 5px;
    justify-content: center;
    flex-wrap: wrap;
    z-index: 1;
    position: relative;
    }

    .footer-column {
    min-width: 40px;
    flex: 1 1 40px;  
    max-width: 50px;  
    }

    .footer-column h3 {
    margin-bottom: 10px;
    font-size: 12px;
    color: #fff;
    }

    .footer-column p {
    margin: 5px 0;
    font-size: 10px;
    color: #ddd;
    }

    .price{
        font-size: 25px;
    }
}

@media screen  and (min-device-height: 700px) and (max-device-height: 750px) {
        html, body {
        overflow-x: hidden;
    }

    * {
        box-sizing: border-box;
    }

    .nav-links a {
        font-size: 2.6vw !important;
    }

    .hero {
    padding: 8rem 2rem 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin: 0 auto;
    align-items: center;
    background-image: url('images/bg-header-home.jpg');
    width: 100%;
    }

    .demo {
    padding: 4rem 2rem;
    width: 100%;
    background-color: var(--verde);
    color: var(--white);
    }

    .demo-content {
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }

    .demo-steps {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .gallery-container {
    position: relative;
    }

    .gallery-main {
        width: 95%;
        height: 300px;
        border-radius: 15px;
        margin-bottom: 1rem;
        object-fit: cover;
        cursor: zoom-in;
        transition: var(--transition);
    }

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

    .gallery-thumbs {
        display: flex;
        gap: 5px;
    }

    .thumb {
        width: 70px;
        height: 70px;
        border-radius: 10px;
        cursor: pointer;
        opacity: 0.6;
        transition: var(--transition);
        object-fit: cover;
    }

    .thumb.active, .thumb:hover {
        opacity: 1;
        border: 2px solid var(--primary);
    }

    .hero {
        padding: 8rem 2rem 4rem;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        max-width: 1200px;
        margin: 0 auto;
        margin-left: 30px;
        background-image: url('images/bg-header-home.jpg');
    }

    .contact {
    padding: 4rem 2rem;
    background: var(--white);
    margin-top: 750px;
    }

    .contact-content {
        max-width: 600px;
        margin: 0 auto;
        text-align: center;
    }

    .contact-form {
        margin-top: 2rem;
    }

     .footer2 {
    position: relative;
    background-image: url(images/freepik__the-style-is-3d-model-with-octane-render-volumetri__72669.jpeg);
    background-size: contain;
    background-repeat: repeat;
    background-position: center;
    color: white;
    padding: 60px 20px 30px;
    margin-top: 0px;
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 250px;
    }

    .footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); 
    z-index: 0;
    }

    .footer-content {
    display: flex;
    gap: 5px;
    justify-content: center;
    flex-wrap: wrap;
    z-index: 1;
    position: relative;
    }

    .footer-column {
    min-width: 30px;
    flex: 1 1 30px;  
    max-width: 40px;  
    }

    .footer-column h3 {
    margin-bottom: 10px;
    font-size: 10px;
    color: #fff;
    }

    .footer-column p {
    margin: 5px 0;
    font-size: 8px;
    color: #ddd;
    }

    .price{
        font-size: 25px;
    }
}







