/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */


/* Estilos shortcode portafolio */

.portafolio-categorias {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 40px 0;
}

.portafolio-categorias .categoria-item {
  text-align: center;
  transition: transform 0.3s ease;
}

.portafolio-categorias .categoria-item:hover {
  transform: translateY(-5px);
}

.portafolio-categorias img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.portafolio-categorias h3 {
  margin-top: 12px;
  font-size: 1.5rem;
  font-weight: normal;
  color: #333;
  text-transform: uppercase;
  font-family: 'Roboto', sans-serif;
}

/* Responsive breakpoints */
@media (max-width: 1024px) {
  .portafolio-categorias {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .portafolio-categorias {
    grid-template-columns: 1fr;
  }

  .portafolio-categorias h3 {
    font-size: 1rem;
  }
}
