  @import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Sora:wght@100..800&display=swap');

::selection {
    background-color: #ffc080;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Sora', sans-serif;
    min-height: 100vh;
    color: #1C1C1C;
    padding: 20px;
    background: linear-gradient(28.3deg, #FFF3E0 0%, #ffda9f 100%);
    backdrop-filter: blur(100px);
}
img {
    user-select: none;
    -webkit-user-drag: none;
}
.container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    min-height: 80vh;
}
.wrapper {
    text-align: left;
    max-width: 650px;
}
.wrapper img {
    margin-bottom: 50px;
}
.wrapper h1 {
    font-weight: 600;
    margin-bottom: 15px;
    background: linear-gradient(100deg, #FFA640, #FF8C1A, #FF6B00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: clamp(28px, 5vw, 40px);
    letter-spacing: 0.2px;
}
.wrapper p {
    font-size: 1rem;
    line-height: 28px;
    letter-spacing: 0;
    color: #666;
    margin-bottom: 30px;
    letter-spacing: -0.3px;
}
.wrapper section {
    margin-bottom: 2rem;
    border-left: 5px solid #ff962e;
    padding-left: 20px;
}
span {
    text-shadow: 0 0 20px #ffa723b6;
    -webkit-text-fill-color: #ff6c0a;
}
form {
    display: flex;
    gap: 8px;
    background-color: transparent;
    margin-bottom: 2rem;
    max-width: 400px;
    width: 100%;
    position: relative;
}
input {
    flex: 1;
    padding: 14px 20px;
    border: none;
    outline: none;
    font-size: 0.8rem;
    font-family: 'Sora', sans-serif;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
    border-radius: 9px 0 0 9px;
    margin-left: 22px;
}
.animation-button {
    padding: 12px 20px;
    border: none;
    background-color: #e65700;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: 'Sora', sans-serif;
    display: inline-flex;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
    border-radius: 0 25px 25px 0;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}
button:hover {
    background-color: #FF8C1A;
}
button #bell-svg {
    transition: transform 0.2s;
}
button:hover #bell-svg {
    transform: scale(1.2);
    transition: transform 0.2s;
}
#bell-svg {
    opacity: 0;
    transform: translateX(-100px);
    position: absolute;
    transition: opacity 0.3s, transform 0.3s ease-out;
}
.animation-button #send-svg {
    transition: opacity 0.3s, transform 0.3s ease-out;
    fill: #fff;
}
.animation-button:hover #bell-svg {
    opacity: 1;
    transform: translateX(0);
}
.animation-button:hover #send-svg {
    opacity: 0;
    transform: translateX(100px);
}
.animation-button, button {
    width: 100px;
}
.advice-image {
    width: 220px;
    position: absolute;
    top: 9px;
    right: -176px;
    z-index: -1;
}
.social-icons {
    display: flex;
    justify-content: center;
    gap: 25px;
}
.social-icons a i {
    font-size: 30px;
    color: #f87625;
    transition: transform 0.3s, color 0.3s;
    border-radius: 50%;
}
.social-icons a i:hover {
    transform: translateY(-5px);
    transition: transform 0.3s, color 0.3s;
    color: #c94d00;
}
/* Animaciones de entrada */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes slideInTop {
    from {
        opacity: 0;
        transform: translateY(-60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes slideInFromLeftIcon {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes slideInFromRightIcon {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
/* Aplicación a los elementos */
.wrapper img:first-child {
    animation: slideInTop 1s ease-out forwards;
}
.wrapper section {
    animation: slideInLeft 1s ease-out forwards;
    animation-delay: 0.2s;
    opacity: 0; /* Para que no se vea antes de animar */
}
.social-icons a:nth-child(1) {
    animation: slideInFromLeftIcon 0.8s ease-out forwards;
    animation-delay: 0.6s;
    opacity: 0;
}
.social-icons a:nth-child(2) {
    animation: slideInFromRightIcon 0.8s ease-out forwards;
    animation-delay: 0.6s;
    opacity: 0;
}

.alert {
    padding: 10px 18px;
    border: 1px solid #fff;
    border-radius: 5px;
    background-color: #4caf50;
    color: #fff;
    margin-bottom: 1rem;
    text-align: center;
    width: fit-content;
    margin: 0 auto;
    font-size: 0.85rem;
    position: fixed;
    top: 30px;
    right: 0;
    left: 0;
    animation: slideInTop 0.5s ease-out forwards;
}

.loader {
    display: none;
    width: 23px;
    padding: 4px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #fff;
    position: absolute;
    --_m: 
        conic-gradient(#0000 10%,#000),
        linear-gradient(#000 0 0) content-box;
    -webkit-mask: var(--_m);
            mask: var(--_m);
    -webkit-mask-composite: source-out;
            mask-composite: subtract;
    animation: l3 1s infinite linear;
}
@keyframes l3 {to{transform: rotate(1turn)}}
footer {
    position: fixed;
    bottom: 30px;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 10px;
    font-size: 14px;
    color: #727272;
}
/* RESPONSIVE STYLES */
@media (max-width: 1200px) {
    .container > img:last-child {
        width: 500px;
        margin-right: -40px;
    }
}
@media (max-width: 1024px) {
    .container {
        gap: 20px;
    }
    .container > img:last-child {
        width: 400px;
        margin-right: -20px;
    }
    .wrapper {
        max-width: 500px;
    }
    input {
      max-width: 300px;
    }
}
@media (max-width: 768px) {
    body {
        padding: 25px;
    }
    
    .container {
        flex-direction: column;
        gap: 30px;
        min-height: auto;
        padding: 20px 0;
    }
    
    .wrapper {
        text-align: center;
        max-width: 100%;
        order: 1;
    }
    
    .wrapper img {
        width: 200px;
        margin-bottom: 30px;
    }
    
    .wrapper section {
        text-align: left;
        margin-bottom: 1.5rem;
    }
    
    .wrapper h1 {
        font-size: clamp(24px, 6vw, 32px);
    }
    
    .container > img:last-child {
        width: 300px;
        margin-right: 0;
        order: 2;
    }
    
    form {
        max-width: 100%;
        margin: 0 auto 2rem auto;
    }
    
    .advice-image {
        display: none;
    }
    
    .social-icons {
        margin-top: 20px;
        gap: 20px;
    }
    
    .social-icons a i {
        font-size: 28px;
    }
    
    footer {
        position: relative;
        bottom: auto;
        margin-top: 40px;
        font-size: 12px;
    }
}
@media (max-width: 480px) {
    body {
        padding: 20px;
    }
    .container {
        gap: 10px;
    }
    .wrapper img {
        width: 180px;
    }
    
    .wrapper h1 {
        padding-top: 20px;
        font-size: clamp(18px, 7vw, 22px);
    }
    
    .wrapper p {
        font-size: 0.8rem;
        line-height: 24px;
    }
    
    .wrapper section {
        padding-left: 0;
        border-left: none;
    }
    
    .container > img:last-child {
        width: 250px;
    }
    
    form {
        justify-content: center;
    }
    input {
        padding: 12px 16px;
        font-size: 0.75rem;
        margin-left: 0;
    }
    
    .animation-button {
        padding: 12px 16px;
        width: 80px;
    }
    
    .social-icons a i {
        font-size: 26px;
    }
    
    .social-icons {
        gap: 15px;
    }
}
@media (max-width: 320px) {
    .wrapper img {
        width: 160px;
    }
    
    .container > img:last-child {
        width: 200px;
    }
    
    form {
        gap: 4px;
    }
    
    input {
        padding: 10px 12px;
    }
    
    .animation-button {
        padding: 10px 12px;
        width: 70px;
    }
}