@import url('https://fonts.googleapis.com/css2?family=Hi+Melody&family=Inter:wght@400;500;600;800&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.loading-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loading-content {
    text-align: center;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #333;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0 auto;
}

.logo {
    position: fixed;
    left: 20px;
    top: 20px;
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.571);
    border-radius: 10px;
    padding: 10px;
    z-index: 1000;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.header {
    margin-bottom: 60px;
    margin-top: 100px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.profile {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background-color: #EEF8F6;
    border-radius: 50%;
    margin-bottom: 20px;
}

.profile-image {
    width: 80px;
    height: 80px;
    opacity: 0;
    
}

.pi-active {
    animation: fadeInBounce 0.5s ease forwards;
}


@keyframes fadeInBounce {
    0% {
        opacity: 0;
        transform: scale(0.0);
    }
    30% {
        opacity: 0;
        transform: scale(0.1);
    }
    60% {
        opacity: 1;
        transform: scale(1.2);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.profile-mano {
    position: absolute;
    left: calc((100% / 2) - 70px);
    top: 150px;
    font-size: 40px;
    animation: wave 2s infinite ;
}

@keyframes wave {
    0% { transform: rotate(0deg); }
    10% { transform: rotate(14deg); }
    20% { transform: rotate(-8deg); }
    30% { transform: rotate(14deg); }
    40% { transform: rotate(-4deg); }
    50% { transform: rotate(10deg); }
    60% { transform: rotate(0deg); }
    100% { transform: rotate(0deg); }
}

.profile-text {
    font-family: 'Hi Melody', Arial, Helvetica, sans-serif;
    font-size: 1.5em;
    line-height: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.p-name {
    overflow: hidden;
    width: 0;
    white-space: nowrap;
    animation: typing 1.2s steps(30, end) forwards;
    text-align: center;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }

}

.subtitle {
    color: #666;
    font-size: 0.9em;
    animation: aparecer 1s ease 1.2s forwards;
    opacity: 0;
}

@keyframes aparecer {
    0% { opacity: 0; }
    50% { opacity: 0; }
    100% { opacity: 0.8; }
}

.intro {
    margin-bottom: 80px;
    text-align: center;
}

.pre-title {
    color: #666;
    margin-bottom: 5px;
    font-size: 0.9em;
}

h1 {
    font-size: 2.5em;
    line-height: 1.2;
    margin-bottom: 30px;
    font-weight: 800;
}

h1 span {
    position: relative;
}

h1 span::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 3px;
    background-color: #FFD700;
    animation: underline-animation 1.5s ease 1.2s forwards;
}

@keyframes underline-animation {
    to {
        width: 100%;
    }
}
.gallery {
    margin-bottom: 60px;
    overflow: hidden;
}

.marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 20px;
}

.marquee-content {
    display: flex;
    gap: 20px;
    animation: scroll 120s linear infinite;
    min-width: max-content;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    will-change: transform;
    width: 100%;
}

.marquee-content2 {
    display: flex;
    gap: 20px;
    animation: scroll 70s linear infinite;
    min-width: max-content;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    will-change: transform;
    width: 100%;
}

@keyframes scroll {
    0% {
        transform: translateX(0) translateZ(0);
    }
    100% {
        transform: translateX(-50%) translateZ(0);
    }
}

.marquee-item {
    flex: 0 0 300px;
    height: 200px;
}

.marquee-item.large {
    flex: 0 0 400px;
    height: 250px;
}

.marquee-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.second-row .marquee-content {
    animation-direction: reverse;
}

.description {
    text-align: center;
    width: 100%;
    margin: 0 10px;
    padding: 0 20px;
    font-size: 1em;
    color: #666;
}

.google-reviews {
    padding: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.google-reviews h2 {
    font-size: 1.8em;
    margin-bottom: 30px;
    color: #333;
    font-weight: 600;
}

.reviews-container {
    display: flex;
    gap: 20px;
    max-width: 100%;
    margin: 0 auto;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 20px 25px;
}

.review-card {
    background: #fafafa;
    border-radius: 10px;
    padding: 20px;
    min-width: 300px;
    text-align: left;
    scroll-snap-align: start;
    cursor: grab;
    user-select: none;
}

.reviews-container::-webkit-scrollbar {
    display: none;
}

.stars {
    color: #FFD700;
    font-size: 1.2em;
    margin-bottom: 10px;
}

.review-text {
    color: #333;
    font-size: 0.9em;
    line-height: 1.6;
    margin-bottom: 15px;
    font-style: italic;
}

.reviewer-name {
    color: #666;
    font-size: 0.85em;
    font-weight: 500;
}

.footer {
    height: 50px;
    width: 100%;
    margin-bottom: 50px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    position: fixed;
    padding-bottom: 20px;
    bottom: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3) 30%, transparent);
}

.instagram-link {
    width: 60px;
    height: 60px;
    background-color: #333;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.instagram-link-img {
    width: 25px;
    height: 25px;
}

.whatsapp-button {
    display: flex;
    align-items: center;
    height: 60px;
    gap: 10px;
    background-color: #41c250;
    color: white;
    padding: 0 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s;
}

.whatsapp-button-img {
    width: 25px;
    height: 25px;
}

.whatsapp-button img {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {

    h1 {
        font-size: 2em;
    }

    .marquee-item {
        flex: 0 0 250px;
        height: 170px;
    }

    .marquee-item.large {
        flex: 0 0 300px;
        height: 200px;
    }
}

@keyframes shake {
    0%, 100% { transform: translate(0, 0); }
    10% { transform: translate(-2px, 0); }
    20% { transform: translate(2px, 0); }
    30% { transform: translate(-2px, 0); }
    40% { transform: translate(2px, 0); }
    50% { transform: translate(-2px, 0); background-color: #c54b13; }
    60% { transform: translate(2px, 0); }
    70% { transform: translate(-2px, 0); }
    80% { transform: translate(2px, 0); }
    90% { transform: translate(-2px, 0); }
}

.whatsapp-button.shake {
    animation: shake 0.5s ease-in-out;
}
