@charset "UTF-8";
/*!
* Start Bootstrap - Modern Business v5.0.7 (https://startbootstrap.com/template-overviews/modern-business)
* Copyright 2013-2023 Start Bootstrap
* Licensed under MIT (https://github.com/StartBootstrap/startbootstrap-modern-business/blob/master/LICENSE)
*/
/*!
 * Bootstrap  v5.2.3 (https://getbootstrap.com/)
 * Copyright 2011-2022 The Bootstrap Authors
 * Copyright 2011-2022 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */

:root {
    /* 🎨 Colores principales */
  --color-primary-blue: #0D47A1;
  --bg-main: #dfebe0; 
  --color-primary-green: #43A047;
  --color-blue-dark: #0A2E5E;
  --color-blue-light: #E3F2FD;
  --color-white: #FFFFFF;

  /* 🎨 Colores secundarios */
  --color-green-light: #8BC34A;
  --color-green-soft: #E8F5E9;
  --color-blue-soft: #F0F7FF;
  --color-gray-light: #F5F7FA;
  --color-gray-medium: #B0BEC5;

  /* 🎨 Colores de acento */
  --color-accent-green: #2E7D32;
  --color-green-dark: #1B5E20;
  --color-accent-blue: #1565C0;
  --color-accent-yellow: #FFD54F;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background: var(--bg-main);
    color: var(--text-main);
}

/* HEADER */
.menu {
    background: var(--color-white);
    display: flex;
    margin-bottom: 5px;    
}


.menu  a {
    margin: 0 25px;
    text-decoration: none;
    font-weight: 500;
    color: var(--color-blue-dark);
      
}

.navbar-nav .nav-item {
  padding: 15px;
  
}

nav a:hover {
    opacity: 0.7;
}



/* HERO */
.hero {
    display: flex;
    align-items: center;
    padding: 60px;
    gap: 40px;
}

.hero-text {
    flex: 1;
}

.hero-text h2 {
    color: var(--text-main);
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-text h3 {
    color: var(--color-primary-blue);
    font-size: 30px;
    margin-bottom: 20px;
}

.hero-text p {
    color: var(--text-main);
    margin-bottom: 30px;
}

.btn {
    background: var(--text-soft);
    padding: 15px 30px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn:hover {
    background: var(--primary-hover);
}

.hero img {
    width: 1000px;
    border-radius: 20px;
}

.div1 {
  margin-bottom: 30px;
  text-align: center;
}

.catalogo {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
}
.producto {
    background: white;
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
           
}
.producto img {
    width: 25%;
    /*height: 250px;*/
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 10px; 
           
            
}
.producto h3 {
    color: #1B5E20;
    font-size: 28px;
    /*font-weight: bold;*/
    }
        
.precio {
    color: #44798a;
    font-size: 20px;
    /*font-weight: bold;*/
    list-style-type: disc; /* círculo vacío */
    padding : 35px;
        
}
           /*adding-left: 0;*/
            /*margin-left: 0;*/
            /*list-style-position: inside; /* opcional */
        

/* RESPONSIVE */
@media(max-width: 900px) {
    .hero {
        flex-direction: column;
    }

    .grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 768px) {
  .w-md-70 {
    width: 90% !important;
  }
}