/*
    TABLE OF CONTENTS
    ---------------------------
     1. General
     2. Header
     3. Section About
     4. Section Services
     5. Section Team
     6. Section Contact
     7. Section Subscribe
     8. Footer
     9. Responsive CSS
*/

/* ================================= */
/* :::::::::: 1. General ::::::::::: */
/* ================================= */

html, body {
  font-family: 'Open Sans', Helvetica, Arial, sans-serif;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  line-height: 25px;
  font-size: 13px;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.g-6, .gx-6 {
  --bs-gutter-x: 6rem;
}

a {
  text-decoration: none !important;
  color: #000;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

a:hover {
  text-decoration: none !important;
  color: #ababab;
}

h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Aldrich", sans-serif;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: none;
}

#page-loader {
  background: #242830;
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: 99999;
}

.loader-icon {
  background: repeat #242830;
  border-bottom: 4px solid rgba(19,19,19,.1);
  border-left: 4px solid rgba(19,19,19,.1);
  border-radius: 100px;
  border-right: 4px solid rgba(19,19,19,.1);
  border-top: 4px solid rgba(19,19,19,.1);
  height: 60px;
  left: 50%;
  margin: -20px 0 0 -20px;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 60px;
}

.colored-border {
  border-top-color: #2CC9B4;
}

.fa-spin {
  -webkit-animation: fa-spin 1.2s infinite linear;
  animation: fa-spin 1.2s infinite linear;
}

@-webkit-keyframes fa-spin {
  0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
  100% { -webkit-transform: rotate(359deg); transform: rotate(359deg); }
}

@keyframes fa-spin {
  0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
  100% { -webkit-transform: rotate(359deg); transform: rotate(359deg); }
}

.backstretch:after,
.YTPOverlay:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  background-repeat: repeat;
  z-index: 1;
}

.rain-video {
  visibility: hidden;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
}

::-webkit-input-placeholder { color: #8c9398; }
:-moz-placeholder { color: #8c9398; opacity: 1; }
::-moz-placeholder { color: #8c9398; opacity: 1; }
:-ms-input-placeholder { color: #8c9398; }

/* ================================= */
/* :::::::::: 2. Header :::::::::::: */
/* ================================= */

header {
  height: 100vh;
  width: 100%;
  position: relative;
  overflow: hidden;

  background-image: url("../images/hero-diego-stevens.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}



header .typed {
  font-size: 1.9em;
  color: #FFFFFF;
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Aldrich", sans-serif;
  letter-spacing: 1px;
  position: relative;
  z-index: 2;
  margin-bottom: 8px;
}

header .logo {
  margin-bottom: 30px;
}

header .logo img {
  position: relative;
  z-index: 2;
}

header .line {
  display: inline-block;
  width: 40px;
  height: 30px;
  margin: 0 auto;
}

header p {
  font-size: 14px;
  color: #fff;
  word-spacing: 1px;
  line-height: 25px;
  position: relative;
  z-index: 2;
}

header .fa-clock-o {
  font-size: 31px;
  color: #FFFFFF;
  margin-right: 5px;
  display: block;
  margin-bottom: 10px;
}

header h3 {
  color: #FFFFFF;
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 30px;
  font-family: 'Aldrich', sans-serif;
}

header h1 span {
  font-weight: 500;
}

header .mouse-wrapper {
  z-index: 999;
  position: absolute;
  bottom: 80px;
  left: auto;
}

/* Animación del mouse desactivada */
header .mouse {
  position: relative;
  left: -20px;
  /* animation: wobbleArrow 1s ease-in-out 0s infinite alternate; */
}

header .mouse span {
  font-weight: 500;
  letter-spacing: 1px;
  text-align: left;
  position: relative;
  bottom: 20px;
  left: -1px;
  font-size: 1.3em;
  color: #fff;
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

header .mouse a {
  color: #fff;
  text-align: center;
  outline: none;
  display: flex;
  flex-direction: column;
}

header .mouse a i {
  font-size: 1.3em;
  font-weight: 700;
}

header .social-icons li {
  list-style: none;
  font-size: 18px;
  float: left;
  margin: 0 10px 0 0;
}

header .social-icons li i {
  color: #FFFFFF;
  display: block;
  width: 40px;
  height: 40px;
  font-size: 16px;
  outline: none;
  line-height: 37px;
  border: 2px solid #FFFFFF;
  border-radius: 50%;
  transition: all 0.5s ease 0s;
}

header .social-icons li i:hover {
  color: #000000;
  background: none;
  text-shadow: none;
  border: 2px solid #FFFFFF;
  border-radius: 50%;
}

header .social-icons li a {
  display: block;
  background: rgba(255, 255, 255, 0);
  text-decoration: none;
  border-radius: 50%;
  color: #346C8D;
  transition: all 0.5s ease 0s;
}

header .social-icons li a:hover {
  background: #fff;
}

header .social-icons {
  text-align: center;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  position: absolute;
  z-index: 2;
  top: 120px;
}

header .social-icons ul {
  line-height: 0px;
  position: relative;
  display: inline-block;
  margin: 0;
  padding-left: 0;
}

/* Keyframes siguen por si los quieres usar después */
@keyframes wobbleArrow {
  from { bottom: 40px; }
  to { bottom: 50px; }
}

@-webkit-keyframes wobbleArrow {
  from { bottom: 40px; }
  to { bottom: 50px; }
}

header #effect-box,
header .video-box,
header .image-box {
  position: absolute !important;
  overflow: hidden;
  height: 100vh;
  width: 100%;
  top: 0;
}

.countdown {
  font-size: 2.7em;
  line-height: 35px;
  display: block;
  color: #FFF;
  font-weight: 600;
  float: left;
  margin-left: -35px;
  margin-top: 10px;
  font-family: "Raleway", sans-serif;
  text-align: center;
  letter-spacing: 1px;
  position: relative;
  z-index: 2;
}

.countdown div span {
  display: block;
  font-size: 14px;
  text-align: center;
}

.countdown div {
  display: inline-block;
  margin: 0 35px;
  font-weight: 500;
  letter-spacing: 0;
}

/* ================================= */
/* :::::::::: 3. About ::::::::::::: */
/* ================================= */

.section-about {
  overflow: hidden;
}

.section-about .col-md-6.left-box {
  display: flex;
  padding: 150px 80px;
  align-items: center;
  align-content: center;
  justify-content: center;
}

.section-about .col-md-6.left-box h2 {
  font-size: 1.2em;
  font-weight: 600;
  color: #000;
  text-align: left;
  position: relative;
  text-transform: uppercase;
  line-height: 25px;
}

.section-about .col-md-6.left-box p {
  text-align: left;
  word-spacing: 1px;
  line-height: 25px;
  margin-top: 15px;
  color: #000;
}

.section-about .col-md-6.right-box {
  display: flex;
  padding: 150px 80px;
  flex-direction: column;
  align-items: center;
  align-content: center;
  justify-content: center;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.section-about .col-md-6.right-box .title-section {
  color: #fff;
}

.section-about .col-md-6.right-box .title-section i {
  font-size: 2.1em;
  text-align: center;
  display: block;
}

.section-about .col-md-6.right-box .title-section h2 {
  color: #fff;
  margin-top: 15px;
  font-size: 1.2em;
  text-align: center;
  text-transform: uppercase;
  font-weight: 600;
}

.section-about .col-md-6.right-box .title-section h2:after {
  content: "//";
  display: block;
  margin: 15px auto;
  font-size: 0.8em;
  color: #fff;
  letter-spacing: 1px;
}

.section-about .col-md-6.right-box .experience-box {
  font-family: "Raleway", sans-serif;
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  align-content: center;
  justify-content: center;
}

.section-about .col-md-6.right-box .experience-box .timer {
  font-size: 2.3em;
  font-weight: 500;
}

.section-about .col-md-6.right-box .experience-box .icon {
  font-size: 25px;
  color: #fff;
}

.section-about .col-md-6.right-box .experience-box h4 {
  font-size: 13px;
  letter-spacing: 0;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 15px;
  margin-bottom: 0;
}

.section-about .col-md-6.right-box .experience-box h4:after {
  content: "//";
  display: block;
  margin: 15px auto;
  font-size: 0.8em;
  color: #fff;
  letter-spacing: 1px;
}

.section-about .col-md-6.right-box .col-md-3:last-child .experience-box:last-child {
  margin-right: 0;
}

/* ================================= */
/* :::::::::: 4. Services :::::::::: */
/* ================================= */

.section-services {
  overflow: hidden;
}

.section-services .col-md-6.left-box {
  display: flex;
  padding: 150px 80px;
  align-items: center;
  align-content: center;
  justify-content: center;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.section-services .col-md-6.left-box .title-section h2 {
  font-size: 1.2em;
  font-weight: 600;
  color: #fff;
  text-align: right;
  text-transform: uppercase;
  margin-top: 15px;
}

.section-services .col-md-6.left-box .title-section h2:after {
  content: "-->";
  display: block;
  margin: 15px auto;
  font-size: 0.7em;
  color: #fff;
  letter-spacing: 1px;
}

.section-services .col-md-6.left-box .title-section i {
  color: #fff;
  font-size: 2.1em;
  text-align: right;
  display: block;
}

.section-services .col-md-6.left-box .title-section p {
  color: #fff;
  text-align: right;
  word-spacing: 1px;
  line-height: 25px;
}

.section-services .col-md-6.right-box {
  padding: 70px 80px;
  background-color: #EFE4DA;
}

.section-services .col-md-6.right-box .col-md-6:nth-child(1),
.section-services .col-md-6.right-box .col-md-6:nth-child(2) {
  border-bottom: 1px solid #eeeeef;
  margin-bottom: 35px;
  padding-bottom: 25px;
}

.section-services .services-box h2 {
  font-size: 1em;
  text-transform: uppercase;
  font-weight: 600;
  text-align: left;
  margin-top: 10px;
  color: #000;
}

.section-services .services-box .icon {
  position: relative;
  margin: 0 auto;
  display: block;
  font-size: 35px;
  float: left;
  color: #2cc9b4;
}

.section-services .services-box .info-box {
  margin-left: 70px;
}

.section-services .services-box p {
  text-align: left;
  word-spacing: 1px;
  line-height: 25px;
  margin-top: 10px;
  color: #000;
}

/* ================================= */
/* :::::::::: 6. Contact ::::::::::: */
/* ================================= */

.section-contact {
  overflow: hidden;
}

.section-contact .col-md-6.left-box {
  padding: 150px 80px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.section-contact .col-md-6.left-box .title-section h2 {
  font-size: 1.2em;
  font-weight: 600;
  color: #fff;
  text-align: right;
  text-transform: uppercase;
  margin-top: 15px;
}

.section-contact .col-md-6.left-box .title-section h2:after {
  content: "-->";
  display: block;
  margin: 15px auto;
  font-size: 0.7em;
  color: #fff;
  letter-spacing: 1px;
}

.section-contact .col-md-6.left-box .title-section i {
  color: #fff;
  font-size: 2.1em;
  text-align: right;
  display: block;
}

.section-contact .col-md-6.left-box .title-section p {
  color: #fff;
  text-align: right;
  word-spacing: 1px;
  line-height: 25px;
}

.section-contact .col-md-6.right-box {
  display: flex;
  padding: 150px 80px;
  align-items: center;
  align-content: center;
  justify-content: center;
  position: relative;
}

.section-contact form {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  flex: 1;
  justify-content: space-between;
  position: relative;
}

.section-contact .contact-info {
  word-break: break-all;
  text-align: right;
}

.section-contact .contact-info h3 {
  font-size: 1em;
  font-weight: 600;
  color: #fff;
  text-align: right;
  text-transform: uppercase;
}

.section-contact .contact-info i {
  font-size: 1.8em;
  text-align: right;
  color: #fff;
  margin-bottom: 15px;
  margin-top: 60px;
}

.section-contact .contact-info .info-box {
  color: #fff;
}

.section-contact form label.error { position: relative; }

.section-contact form label.error i.message {
  right: 15px;
  position: absolute;
  bottom: 15px;
}

.section-contact form label.error i.email,
.section-contact form label.error i.name {
  right: 15px;
  position: absolute;
  bottom: 35px;
}

.section-contact input[type='text'],
.section-contact input[type='email'] {
  width: 100%;
  background: transparent;
  border: 1px solid #ededed;
  padding: 8px 15px;
  outline: none;
  color: #000;
  margin-bottom: 20px;
}

.section-contact textarea {
  width: 100%;
  background: transparent;
  padding: 15px;
  border: 1px solid #ededed;
  outline: none;
  height: 100px;
  resize: none;
  color: #000;
}

.section-contact input[type='submit'] {
  width: 100%;
  background-color: #8C5A3C;     /* marrón principal */
  border: 2px solid #8C5A3C;
  color: #FFF;
  padding: 12px;
  display: block;
  margin: 0 auto;
  word-spacing: 1px;
  outline: none;
  text-transform: uppercase;
  font-size: 13px;
  margin-top: 20px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.3s ease-in-out;
  border-radius: 6px;           /* sutil, moderno */
}

.section-contact input[type='submit']:hover {
  background-color: #73432B;    /* marrón más oscuro */
  border-color: #73432B;
  box-shadow: 0 10px 24px rgba(140, 90, 60, 0.35);
  transform: translateY(-2px);
}

.section-contact i {
  color: #dc3545;
}

.section-contact .notification_ok {
  text-align: center;
  color: #000000;
  font-weight: 500;
  margin-bottom: 35px;
  position: absolute;
  top: 80px;
  left: 0;
  right: 0;
}

.section-contact .notification_ok i {
  color: #24b7a4;
  padding-right: 5px;
}

.section-contact .message-box {
  text-align: left;
  color: #000000;
  font-weight: 500;
  width: 100%;
  margin-top: 20px;
  display: none;
  background-color: transparent;
  position: absolute;
  bottom: -70px;
}

.section-contact .message-box.success {
  border: 1px solid #84e11f;
  padding: 8px 12px;
}

.section-contact .message-box.danger {
  border: 1px solid #cc0404;
  padding: 8px 12px;
}

.section-contact .message-box.success i {
  color: #84e11f;
  padding-right: 5px;
}

.section-contact .message-box.danger i {
  color: #cc0404;
  padding-right: 5px;
}

.section-contact.single-column {
  padding: 70px 0;
  overflow: hidden;
}

/* Title */
.section-contact.single-column .title-section {
  text-align: center;
  margin-bottom: 30px;
}

.section-contact.single-column .title-section i {
  font-size: 32px;
  margin-bottom: 10px;
}

.section-contact.single-column .title-section h2 {
  margin-bottom: 10px;
}

.section-contact.single-column .title-section p {
  max-width: 700px;
  margin: 0 auto;
}

/* Contact info */
.section-contact.single-column .contact-info-row {
  margin-top: 20px;
  margin-bottom: 20px;
}

.section-contact.single-column .contact-info {
  text-align: center;
  word-break: break-word;
}

.section-contact.single-column .contact-info i {
  margin: 0 0 12px 0;
  font-size: 24px;
}

.section-contact.single-column .contact-info h3 {
  margin-bottom: 5px;
}

/* Contact form */
.section-contact.single-column .contact-form-wrap {
  margin: 25px auto 0;
  max-width: 900px;
}

.section-contact.single-column .ajax-contact-form input,
.section-contact.single-column .ajax-contact-form textarea {
  width: 100%;
}

/* Subscribe block (inside same section) */
.section-contact.single-column .subscribe-box {
  margin: 60px auto 0;
  max-width: 900px;
  padding: 70px 40px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 12px;
  text-align: center;
}

.section-contact.single-column .subscribe-box .title-section h2,
.section-contact.single-column .subscribe-box .title-section i {
  color: #fff;
}

.section-contact.single-column #ajaxChimp {
  margin-top: 20px;
}

/* Responsive */
@media only screen and (max-width: 768px) {
  .section-contact.single-column {
    padding: 80px 0;
  }

  .section-contact.single-column .contact-form-wrap,
  .section-contact.single-column .subscribe-box {
    padding: 40px 20px;
  }
}

/* ================================= */
/* :::::: 11. Footer ::::::::::::::: */
/* ================================= */

footer {
  z-index: 10;
  padding: 30px;
  position: relative;
  color: #fff;
  background: #242830;
  text-align: center;
  overflow: hidden;
}

footer .copyright {
  font-size: 13px;
}

footer a {
  transition: all 0.5s ease;
  color: #FFFFFF;
}

footer a:hover,
footer a:focus {
  color: rgba(255, 255, 255, 0.71);
  text-decoration: none;
}

/* ================================= */
/* :::::: 12. Responsive CSS ::::::: */
/* ================================= */

@media only screen and (max-width: 1036px) {

  .section-contact input[type="submit"],
  .section-subscribe button,
  .section-subscribe input[type=text] {
    width: 100%;
  }

  .section-subscribe input[type=text] {
    margin-bottom: 15px;
  }

  .mouse-wrapper {
    display: none !important;
  }
}

@media only screen and (max-width: 756px) {

  .section-about .col-md-6.right-box .col-md-3 {
    margin-bottom: 50px;
  }

  .section-about .col-md-6.right-box .col-md-3 .experience-box {
    margin-right: 0;
  }

  .section-services .col-md-6.right-box .col-md-6 {
    margin-bottom: 25px;
    padding-bottom: 25px;
  }

  .section-services .col-md-6.right-box .col-md-6:nth-child(1),
  .section-services .col-md-6.right-box .col-md-6:nth-child(2) {
    border: none;
    margin-bottom: 25px;
    padding-bottom: 25px;
  }

  .section-services .col-md-6.right-box .col-md-6:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .section-services .col-md-6.right-box .col-md-6 .icon {
    float: none;
    text-align: center;
    margin-bottom: 25px;
  }

  .section-services .col-md-6.right-box .col-md-6 h2,
  .section-services .col-md-6.right-box .col-md-6 p {
    text-align: center;
  }

  .section-services .col-md-6.right-box .col-md-6 .info-box {
    margin-left: 0;
  }

  .section-team .col-md-6.left-box {
    padding-top: 0;
  }

  .section-team .col-md-6.left-box .col-md-6 {
    margin-bottom: 25px;
    padding-bottom: 25px;
  }

  .section-team .col-md-6.left-box .col-md-6:nth-child(1),
  .section-team .col-md-6.left-box .col-md-6:nth-child(2) {
    border: none;
    margin-bottom: 25px;
    padding-bottom: 25px;
  }

  .section-team .col-md-6.left-box .col-md-6:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .section-team .col-md-6.left-box .col-md-6 img {
    float: none;
    width: 180px;
    margin: 0 auto;
    display: block;
  }

  .section-team .col-md-6.left-box .col-md-6 h2,
  .section-team .col-md-6.left-box .col-md-6 p,
  .section-team .col-md-6.left-box .col-md-6 span {
    text-align: center;
  }

  .section-team .col-md-6.left-box .col-md-6 p {
    margin-top: 0;
  }

  .section-team .col-md-6.left-box .col-md-6 .info-box {
    margin-left: 0;
  }

  .section-team .col-md-6.left-box .col-md-6 .social-icons {
    justify-content: center;
    align-items: center;
    align-content: center;
  }

  .title-section h2,
  .title-section p,
  .title-section i {
    text-align: center !important;
  }

  .contact-info h3,
  .contact-info p,
  .contact-info .icon {
    text-align: center !important;
  }

  header .logo {
    margin-top: 50px;
  }

  header .logo img {
    height: auto;
    margin: 10px;
  }
}

@media only screen and (max-width: 540px) {

  header {
    text-align: center;
  }

  footer {
    text-align: center;
  }

  header .countdown {
    margin-left: 0;
  }

  header .social-icons {
    width: 100%;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    top: 70px;
    left: 0;
  }

  header .social-icons li:last-child {
    margin-right: 0;
  }
}


/* Desactivar fondo de Backstretch para que se vea el header */
.backstretch {
  display: none !important;
}

/* Caja del contenido del HERO */
.hero-box {
  max-width: 700px;          /* ancho máximo de la caja */
  margin-right: 80px;        /* mover la caja hacia la derecha */
  display: flex;
  flex-direction: column;
  gap: 20px;                 /* separación entre elementos */
 
  z-index: 3;
}

.hero-title {
  font-size: 1.6em;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
}

.hero-subtitle {
  font-size: 14px;
  color: #fff;
  line-height: 1.6;
  margin-top: -10px;
}

.countdown {
  margin-top: 20px;
  text-align: right;
}

.countdown {
  display: none !important;
}


/* ===== HERO DESKTOP ===== */



header .container {
  height: 100%;
  display: flex;
  align-items: center;
}

/* Caja del contenido del hero */
.hero-box {
  max-width: 700px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-align: left;
  margin-left: 80px;     /* separarlo del borde izquierdo */
  z-index: 3;
}

/* Títulos y textos del hero */
.hero-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #fff;
  line-height: 1.6;
}

/* Redes arriba a la izquierda del hero */
header .social-icons {
  position: absolute;
  top: 40px;
  left: 50px;
  z-index: 4;
}


/* ===== RESPONSIVE HERO ===== */

/* Tablet / pantallas medianas */
@media (max-width: 991px) {
  header {
    background-position: center center;
    padding: 40px 20px;
  }

  header .container {
    justify-content: center;
  }

  .hero-box {
    margin-left: 0;
    max-width: 90%;
  }

  .hero-title {
    font-size: 1.5rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  header .social-icons {
    left: 20px;
    top: 20px;
  }
}

/* Móviles */
@media (max-width: 576px) {
  header {
    text-align: center;
    padding: 80px 15px 40px;
    align-items: flex-start;
    background-position: center top;
  }

  .hero-box {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
  }

  .hero-title {
    font-size: 1.3rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  /* Countdown centrado si lo dejas activo */
  .countdown {
    float: none;
    margin: 15px auto 0;
    text-align: center;
  }

  /* Redes centradas arriba en móvil */
  header .social-icons {
    position: static;
    margin: 0 auto 20px;
    justify-content: center;
  }
}


/* ===== HERO (DEJA SOLO ESTE HEADER) ===== */
header{
  height: 100vh;
  width: 100%;
  position: relative;
  overflow: hidden;

  background-image: url("../images/diegostevens.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;

  display: flex;
  align-items: center;
  justify-content: flex-start;
}

/* Ajusta el “foco” del fondo según tamaño */
@media (max-width: 991px){
  header{
    background-position: center center;
    padding: 40px 20px;
  }
}

@media (max-width: 576px){
  header{
    background-position: center top; /* o center center si prefieres */
    padding: 80px 15px 40px;
  }
}


.services-box .icono {
  width: 56px;
  height: 56px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;

  flex-shrink: 0;        /* evita que se encoja */
  margin-bottom: 15px;
}

.services-box {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.services-box .info-box {
  margin-left: 0; /* anula el margin-left viejo */
}

/* ===== LOGO RESPONSIVE ===== */
header .logo {
  max-width: 800px;     /* tamaño máximo desktop */
}

header .logo img {
  width: 100%;
  height: auto;         /* mantiene proporción */
  display: block;
}

header{
  height: 100vh;
  width: 100%;
  position: relative;
  overflow: hidden;

  /* DESKTOP */
  background-image: url("../images/diegostevens.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;

  display: flex;
  align-items: center;
}

/* 1024px y abajo: usa otra imagen */
@media (max-width: 1024px){
  header{
    background-image: url("../images/diego-mobile.webp");
    background-position: center top;
    padding: 40px 20px;
  }
}

/* Mobile */
@media (max-width: 576px){
  header{
    padding: 80px 15px 40px;
    background-position: center top;
  }
}

/* ===== PRELAUNCH SECTION ===== */
.section-prelaunch {
  padding: 100px 20px 80px;
  text-align: center;
  margin-bottom: 30px;
}

.section-prelaunch h2 {
  font-family: "Aldrich", sans-serif;
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: #000;
  margin-bottom: 20px;
}

.section-prelaunch p {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
}

/* Tablet */
@media (max-width: 991px) {
  .section-prelaunch {
    padding: 80px 20px 60px;
  }

  .section-prelaunch h2 {
    font-size: 1.8rem;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .section-prelaunch {
    padding: 60px 15px 50px;
  }

  .section-prelaunch h2 {
    font-size: 1.5rem;
  }

  .section-prelaunch p {
    font-size: 0.95rem;
  }
}
