/*
Theme Name: Twenty Twenty-Five Child
Theme URI: https://wordpress.org/themes/twentytwentyfive/
Template: twentytwentyfive
Author: the WordPress team
Author URI: https://wordpress.org
Description: Twenty Twenty-Five emphasizes simplicity and adaptability. It offers flexible design options, supported by a variety of patterns for different page types, such as services and landing pages, making it ideal for building personal blogs, professional portfolios, online magazines, or business websites. Its templates cater to various blog styles, from text-focused to image-heavy layouts. Additionally, it supports international typography and diverse color palettes, ensuring accessibility and customization for users worldwide.
Tags: one-column,custom-colors,custom-menu,custom-logo,editor-style,featured-images,full-site-editing,block-patterns,rtl-language-support,sticky-post,threaded-comments,translation-ready,wide-blocks,block-styles,style-variations,accessibility-ready,blog,portfolio,news
Version: 1.3.1760023020
Updated: 2025-10-09 17:17:00

*/

/* main#wp--skip-link--target styles disabled */

.symbol_nosotros {
    margin-top: -100px !important;
}

#contenido-principal {
  position: relative;
  z-index: 10;
  margin-top: 0; /* quitamos el negativo */
  /* padding-top: 100px;  */
}

header {
  position: absolute; /* o fixed si quieres que siga al hacer scroll */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent; /* Asegura que no tenga fondo */
}

/* ==========================================================================
   ANIMACIONES DE SCROLL - PATAGONIA AZUL
   ========================================================================== */

/* Estados iniciales - elementos ocultos */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, opacity;
}

/* Elementos visibles cuando aparecen en scroll */
.scroll-animate.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Variaciones de animación */
.scroll-fade-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease-out;
}

.scroll-fade-up.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.scroll-fade-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-out;
}

.scroll-fade-left.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.scroll-fade-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease-out;
}

.scroll-fade-right.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.scroll-zoom-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-zoom-in.animate-in {
    opacity: 1;
    transform: scale(1);
}

/* Animación con retraso escalonado */
.scroll-animate:nth-child(1) { transition-delay: 0ms; }
.scroll-animate:nth-child(2) { transition-delay: 100ms; }
.scroll-animate:nth-child(3) { transition-delay: 200ms; }
.scroll-animate:nth-child(4) { transition-delay: 300ms; }
.scroll-animate:nth-child(5) { transition-delay: 400ms; }
.scroll-animate:nth-child(6) { transition-delay: 500ms; }

.inputto80{
    background-color: #4D6680;
}


.pres-proy {
    display: flex; /* Change to flex for vertical alignment */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;

    opacity: 1;
    animation: fadeOut 2s ease-in-out;
    animation-delay: 1s;
    animation-fill-mode: forwards;
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }

}

.ultima-linea{
    text-align-last: left;       /* Última línea alineada a la izquierda */
    -moz-text-align-last: left;  /* Compatibilidad con Firefox */
    -webkit-text-align-last: left; /* Compatibilidad con Chrome/Safari */
}

p {
    text-align: justify;         /* Justifica el párrafo */
    text-justify: inter-word;    /* Ajusta el espaciado entre palabras */
    
    -webkit-hyphens: none; /* For older Safari/Chrome versions */
    -moz-hyphens: none;    /* For older Firefox versions */
    -ms-hyphens: none;     /* For older IE/Edge versions */
    hyphens: none;         /* Standard property */
}

.p_right_align{
    text-align: right;         /* Alinea el párrafo a la derecha */
    text-justify: inter-word;  /* Ajusta el espaciado entre palabras */
    hyphens: auto;             /* Permite cortar palabras al final de línea */

    text-align-last: right;    /* Última línea alineada a la derecha */
    -moz-text-align-last: right;/* Compatibilidad con Firefox */
    -webkit-text-align-last: right; /* Compatibilidad con Chrome/Safari */
}

.p_center_align{
    text-align: center;        /* Alinea el párrafo al centro */
    text-justify: inter-word;  /* Ajusta el espaciado entre palabras */
    hyphens: auto;             /* Permite cortar palabras al final de línea */

    text-align-last: center;   /* Última línea alineada al centro */
    -moz-text-align-last: center;/* Compatibilidad con Firefox */
    -webkit-text-align-last: center; /* Compatibilidad con Chrome/Safari */
}