/*
Theme Name: Hello Elementor - Child (Academia VTC)
Theme URI:  https://example.com/
Description: Child theme of Hello Elementor customized for Academia VTC design.
Author:      Tu Nombre / ChatGPT
Template:    hello-elementor
Version:     1.0.0
Text Domain: hello-elementor-child
*/

/* Colores y ajustes base para replicar estilo */
:root{
  --vtc-red: #c71b1b;
  --vtc-dark: #222222;
  --vtc-gray: #efefef;
}
body{
  font-family: 'Montserrat', sans-serif;
  color: var(--vtc-dark);
}
.hero-cta {
  background: var(--vtc-gray);
  padding: 40px 20px;
}
.hero-cta .form-box {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}
.btn-vtc {
  background: var(--vtc-red);
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  display: inline-block;
  text-decoration: none;
}
.modules-row {
  background: var(--vtc-red);
  color: white;
  padding: 40px 20px;
}
/* pequeños ajustes responsivos */
@media (min-width: 768px){
  .hero-grid { display: grid; grid-template-columns: 1fr 420px; gap: 30px; align-items: center;}
}
