html{
    background-color: #f1eee2;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
    font-family: "neulis-sans", "sans-serif";
    font-weight: 400;
    font-style: normal;
    color: #56524E;
    padding-top: 2vh;
}

/* Header Styles */
.header {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    padding: 0 25vh;
}

.logo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
}

.nav {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav a {
    text-decoration: underline;
    color: #333;
    font-weight: 700;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #00BF6B;
}

.agendar-btn {
    background-color: #00BF6B;
    color: black;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.agendar-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 200, 83, 0.3);
    text-decoration: none;
}

/* Main Content */
.main-content {
    min-height: max-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 25vh;
}
.content-container {
    max-width: 100%;
    margin: 0;
    width: 100%;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
}
@media (min-width: 768px)  {
    .content-container{
        display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
    }
    #hero{
    margin-top: 3rem;
    }
}

.hero-animation {
    width: 100%;
    max-width: 500px;
    height: auto;
    margin: 0;
    animation: float 6s ease-in-out infinite;
    display: block;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.hero-text {
    color: #00BF6B;
    font-family: "neulis-cursive", "sans-serif";
    font-weight: 600;
    font-style: normal;
    font-size: clamp(2.5rem, 8vw, 4rem);
    line-height: 1;
    max-width: 600px;
    text-align: left;
    margin-left: 0;
    margin-bottom: 2rem;
}

.hero-text .italic {
    font-style: italic;
}

#main-content-bottom{
    padding-top: 0 !important;
    min-height: max-content;
}

/* Main Content */
.main-content-100 {
    min-height: max-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100vw !important;
    margin: 0 !important;
    padding: 0 !important;
    margin-top: 2rem;
}


/* Description Section */
.description-section {
    margin-top: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.description-text {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #56524E;
    max-width: 600px;
}

.description-text strong {
    color: #56524E;
    font-weight: 700;
}

.cake-container {
    margin-top: 2rem;
    width: 100%;
}

.cake-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Slider Section */
.slider-section {
    padding: 2rem 0;
    border-top: 1px solid #eee;
}
.title{
    font-size: 2rem;
    font-weight: 700;
    color: #25403B;
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.slider-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
    padding: 0 0;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease;
    will-change: transform;
    gap: 16px;
}

.slider-slide {
    flex: 0 0 400px;
    flex-shrink: 0;
    height: 300px;
    border-radius: 20px;
    background-color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    opacity: 0.6;
    transform: scale(0.9);
    transition: all 0.3s ease;
}

.slider-slide.active {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #E2DFD3;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #56524E;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.slider-nav:hover {
    background-color: rgba(230, 230, 225, 1);
}

.slider-nav.prev {
    left: 20px;
}

.slider-nav.next {
    right: 20px;
}

.slider-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
}

.slider-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-indicator.active {
    background-color: #56524E;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.indicator.active {
    background-color: #00BF6B;
    transform: scale(1.2);
}
/* Info Section */
.info-section {
    padding: 0;
    width: 100%;
    margin: 0 auto;
    text-align: left !important;
}
.info-text {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.read-more-link {
    color: #00BF6B;
    text-decoration: underline;
    cursor: pointer;
    font-weight: 500;
    transition: color 0.3s ease;
}
.read-more-link:hover {
    color: #00A843;
}
/* Testimonials Section */
.testimonials-section {
    padding: 3rem 2rem;
}

.testimonials-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}
.testimonial-card {
    background-color: #F5F5F0;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin: 0 60px;
}
.testimonial-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #56524E;
    margin-bottom: 1rem;
}
.testimonial-text {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    font-style: italic;
}
.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #E2DFD3;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #56524E;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}
.testimonial-nav:hover {
    background-color: rgba(230, 230, 225, 1);
}
.testimonial-nav.prev {
    left: 10px;
}
.testimonial-nav.next {
    right: 10px;
}
/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    overflow-y: auto;
    background-color: #f1eee2;
}
.modal-header{
    position: sticky;
    top: 0;
    height: 6rem;
    background-color: #f1eee2;
    z-index: 10;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.modal.active {
    display: block;
}
.modal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 1rem 2rem;
    position: relative;
}
.modal-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    border: none;
    background-color: transparent;
    font-size: 4rem;
    color: #56524E;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}
.modal-close:hover {
    background-color: rgba(0, 0, 0, 0.1);
}
.modal-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00BF6B;
    margin-bottom: 2rem;
    text-align: center;
}
.modal-subtitle{
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 2rem;
}
.modal-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #56524E;
    margin-bottom: 1.5rem;
}

.modal-list{
    padding-left: 1rem;
    margin-left: 1.5rem;
}
/* Marquee Section */
.marquee-section {
    background: linear-gradient(135deg, #FF8C00, #FFA500);
    padding: 1rem 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}
.marquee-content {
    display: inline-block;
    animation: marqueeScroll 30s linear infinite;
    font-size: 1.2rem;
    color: #56524E;
    letter-spacing: 1px;
    font-family: "neulis-cursive", "sans-serif";
    font-weight: 100;
    font-style: normal;

}
@keyframes marqueeScroll {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-100%);
    }
}
.marquee-content span {
    margin: 0 1rem;
}
/* Pause animation on hover */
.marquee-section:hover .marquee-content {
    animation-play-state: paused;
}

/* Packs Section */
.packs-section {
    padding: 4rem 20vh;
    max-width: 100%;
    margin: 0 auto;
}
.packs-container {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 3rem;
    align-items: flex-end;
}
.pack-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex: 1;
    max-width: 500px;
    padding: 2rem 5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow-y: scroll;
    scrollbar-width: none;       /* Firefox */
    -ms-overflow-style: none;    /* IE 10+ */ 
}
.pack-card::-webkit-scrollbar {
  display: none;               /* Chrome, Safari, Opera */
}
.pack1 {
    height: 65vh;
}
.pack2 {
    height: 65vh !important;
}
.pack-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.pack-card.pack1 {
    background-color: #B8D9A4;
}
.pack-card.pack2 {
    background-color: #FBB9D4;
    border-radius: 250px 250px 20px 20px;
}
.pack-title {
    font-size: 2rem;
    font-weight: 700;
    color: #56524E;
    margin-bottom: 1rem;
    margin-top: 2rem;
}
.pack-description {
    font-size: 1.2rem;
    color: #56524E;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    opacity: 0.8;
    text-align: left;
}
.pack-btn {
    background-color: transparent;
    color: #56524E;
    border: 0px solid #56524E;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}
.pack-btn:hover {
    background-color: #56524E;
    color: white;
}
.packs-info {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Dos columnas de igual ancho */
  gap: 2rem;
  margin-top: 2rem;
  margin-bottom: 3rem;
  align-items: end; /* Equivalente a flex-end */
}
.packs-info-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #56524E;
    margin-bottom: 1rem;
}
.packs-info-list {
    list-style: none;
    margin-bottom: 1.5rem;
}
.packs-info-list li {
    font-size: 1rem;
    color: #666;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1rem;
}
.packs-info-list li:before {
    content: "•";
    color: #56524E;
    position: absolute;
    left: 0;
}
.terms-link {
    color: #666;
    text-decoration: none;
    font-size: 1rem;
    cursor: pointer;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: underline;
}
.terms-link:hover {
    color: #56524E;
}
/* Pack Modal Styles */
.pack-modal-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}
.pack1-modal .pack-modal-title {
    color: #4CAF50;
}
.pack2-modal .pack-modal-title {
    color: #E91E63;
}
.pack-modal-section {
    margin-bottom: 2rem;
}
.pack-modal-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #56524E;
    margin-bottom: 1rem;
}
.pack-modal-section ul {
    list-style: none;
    padding-left: 0;
}
.pack-modal-section li {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}
.pack-modal-section li:before {
    content: "✓";
    color: #4CAF50;
    position: absolute;
    left: 0;
    font-weight: bold;
}
/* Full Screen Modal for Terms */
.fullscreen-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3000;
    overflow-y: auto;
}
.fullscreen-modal.active {
    display: block;
}
.fullscreen-modal-content {
    padding: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    min-height: 100vh;
    position: relative;
}
.fullscreen-modal-close {
    position: fixed;
    top: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    border: none;
    background-color: rgba(30, 58, 43, 0.1);
    font-size: 2rem;
    color: #56524E;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 3001;
}
.fullscreen-modal-close:hover {
    background-color: rgba(30, 58, 43, 0.2);
}
.fullscreen-modal-title {
    font-size: 3rem;
    font-weight: 700;
    color: #56524E;
    margin-bottom: 3rem;
    text-align: center;
    margin-top: 2rem;
}
.terms-section {
    margin-bottom: 3rem;
}
.terms-section h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #56524E;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #00BF6B;
    padding-bottom: 0.5rem;
}
.terms-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1rem;
}
/* Booking Section */
.booking-section, .map-section {
    padding: 4rem 2rem;
    max-width: 80%;
    margin: 0 auto;
    padding-top: 0rem !important;
}



.agenda-sub-title{
    font-size: 1.2rem;
    font-weight: 500;
    color: #56524E;
    text-align: left;
    letter-spacing: 1px;
    margin-top: 1rem
}


.calendar-container , .map-container{
    max-width: 100%;
    overflow: hidden;
}
.calendar-container iframe {
    width: 100%;
    height: 50vh;
    border: none;
    display: block;
}
.map-container iframe {
    width: 100%;
    height: 50vh;
    border: none;
    display: block;
}
/* Footer */
.footer {
    background-color: #065f46;
    color: white !important;
    width: 100%;
}
.footer-container {
    max-width: 100%;
    padding: 2rem 1.5rem;
}
/* Grid del footer */
.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}
/* Logo */
.footer-logo h2 {
    font-family: "neulis-cursive", "sans-serif";
    font-size: 2rem;
    font-weight: bold;
    
}
/* Secciones del footer */
.footer-section h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.footer-link {
    color: #a7f3d0;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-link:hover {
    color: white;
}
/* Contacto */
.footer-contact {
    color: #a7f3d0;
}
.footer-contact p {
    margin-bottom: 0.5rem;
}
.phone-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
}
.phone-icon {
    width: 1rem;
    height: 1rem;
}
/* WhatsApp Button */
.whatsapp-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
.whatsapp-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #22c55e;
    border-radius: 50%;
    padding: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulse 2s infinite;
}
.whatsapp-btn:hover {
    background-color: #16a34a;
    transform: scale(1.1);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    animation: none;
}
.whatsapp-icon {
    width: 2rem;
    height: 2rem;
    color: white;
    transition: transform 0.3s ease;
}
.whatsapp-btn:hover .whatsapp-icon {
    transform: rotate(12deg);
}
.whatsapp-glow {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background-color: #4ade80;
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}
.whatsapp-btn:hover .whatsapp-glow {
    opacity: 0.2;
}
/* Animaciones */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}
@keyframes ping {
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}
@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}
/* Footer bottom */
.footer-bottom {
    border-top: 1px solid #047857;
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}
.copyright {
    color: #a7f3d0;
    font-size: 0.875rem;
}
.social-icons {
    display: flex;
    gap: 1rem;
}
.social-link {
    color: #a7f3d0;
    transition: all 0.3s ease;
    text-decoration: none;
}
.auxiliar-link {
    color: #56524E;
    transition: all 0.3s ease;
    text-decoration: none;
}
.social-link:hover {
    color: white;
    transform: scale(1.1);
}
.social-link svg {
    width: 1rem;
    height: 1rem;
}
/* Animaciones de entrada */
.footer-section,
.footer-logo,
.whatsapp-container {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}
.footer-section.animate-in,
.footer-logo.animate-in,
.whatsapp-container.animate-in {
    opacity: 1;
    transform: translateY(0);
}
/* Responsive Design */
@media (max-width: 768px) {
    .header {
        padding: 1rem;
        flex-wrap: wrap;
        gap: 1rem;
        padding: 0 5vh;
    }
    body{
        padding: 2vh 0rem;
        padding-bottom: 0;
    }

    .nav {
        order: 3;
        width: 100%;
        justify-content: center;
        gap: 1rem;
        margin-top: 1rem;
    }

    .nav a {
        font-size: 0.9rem;
    }

    .agendar-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
        text-decoration: none;
    }

    .main-content {
        padding: 0 5vh;
    }

    .hero-animation {
        max-width: 350px;
    }

    .description-text {
        font-size: 1rem;
    }
    .slider-section {
        padding: 2rem 2rem;
    }

    .slider-slide {
        flex: 0 0 280px;
        height: 220px;
    }

    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    .testimonial-card {
        margin: 0 40px;
        padding: 2rem;
    }
    .modal-content {
        padding: 1rem 1.5rem;
    }
    .modal-title {
        font-size: 2rem;
    }
    .modal-subtitle{
        font-size: 1.8rem;
    }
    .marquee-content {
        font-size: 1rem;
    }
    .packs-section {
        padding: 4rem 2rem;
        max-width: 100%;
        margin: 0 auto;
    }
    .packs-container {
        flex-direction: column;
        align-items: center;
        margin-bottom: 0rem;
    }
    .pack-card {
        max-width: 100%;
        width: 100%;
        min-height: 40vh !important;
    }
    .packs-info {
        display: flex;
        flex-direction: column;
        gap: 3rem;
        margin-top: 2rem;
        margin-bottom: 2rem;
        align-items: end; /* Equivalente a flex-end */
    }
    .fullscreen-modal-title {
        font-size: 2rem;
    }
    .fullscreen-modal-content {
        padding: 1rem;
    }
     .booking-title, .map-title {
        font-size: 2rem;
    }
    .booking-section {
        padding: 4rem 0;
        padding-top: 0rem !important;
    }
    .calendar-container iframe {
        height: 500px;
    }
                .map-container iframe {
        height: 500px;
    }
    .map-section {
        padding: 4vh 0;
        max-width: 80%;
        margin: 0 auto;
        padding-top: 0rem !important;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    .footer-logo {
        grid-column: 1 / -1;
        text-align: center;
        margin-bottom: 1rem;
    }        
    .whatsapp-container {
        grid-column: 1 / -1;
        justify-content: center;
        margin-top: 1rem;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    .footer {
        padding: 1.5rem 1rem;
    }
}
@media (max-width: 480px) {
    body{
        padding-top: 2vh;
        
    }
    .header {
        flex-direction: column;
        text-align: center;
        padding: 0 5vh;
    }
    .nav {
        order: 2;
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
    }
    .main-content {
        padding: 0 5vh;
    }
    .hero-animation {
        max-width: 280px;
    }
    .slider-section {
        padding: 2rem 2rem;
    }
    .slider-slide {
        flex: 0 0 220px;
        height: 180px;
    }
    .slider-nav {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    .testimonial-card {
        margin: 0 20px;
        padding: 1.5rem;
    }
    .testimonial-nav {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }
    .marquee-content {
        font-size: 0.9rem;
    }
    .packs-section {
        padding: 4rem 2rem;
        max-width: 100%;
        margin: 0 auto;
    }
    .packs-container {
        flex-direction: column;
        align-items: center;
        margin-bottom: 0rem;         
    }
    .pack-card {
        padding: 1.5rem;
        min-height: 40vh !important;
    }
    .pack-title {
        font-size: 1.5rem;
    }
                .booking-title,.map-title {
        font-size: 1.8rem;
    }
    .calendar-container iframe {
        height: 450px;
    }
    .booking-section {
        padding: 4rem 0;
        padding-top: 0rem !important;
    }
    .map-container iframe {
        height: 450px;
    }
    .map-section {
        padding: 4vh 0;
        max-width: 80%;
        margin: 0 auto;
        padding-top: 0rem !important;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }        
    .footer-logo {
        grid-column: 1;
        margin-bottom: 1rem;
    }
    .footer-logo h2 {
        font-size: 1.75rem;
    }   
    .footer-section h3 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
                .phone-container {
        justify-content: center;
    }    
    .whatsapp-container {
        grid-column: 1;
        margin-top: 1rem;
    }    
    .whatsapp-btn {
        padding: 0.875rem;
    }    
    .whatsapp-icon {
        width: 1.75rem;
        height: 1.75rem;
    }            
    .main-content h1 {
        font-size: 1.5rem;
    }    
    .footer {
        padding: 1.5rem 0.75rem;
    }    
    .footer-container {
        padding: 0 0.5rem;
    }    
    .copyright {
        font-size: 0.75rem;
        text-align: center;
    }    
    .social-icons {
        justify-content: center;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
.loading {
    opacity: 0;
    animation: fadeIn 1s ease-in-out forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}