@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

* a {
    text-decoration: none;
    color: inherit;
}

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

* i {
    font-size: var(--social-icon);
}

* i:hover {
    transform: scale(1.2);
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-size: var(--f-size);
    font-weight: var(--f-weight);
    font-family: var(--f-family);
    letter-spacing: var(--letter-s);
    width: var(--width);
    text-align: var(--text-align);
    -webkit-text-size-adjust: 100% !important;
    -ms-text-size-adjust: 100% !important;
    overflow-x: hidden;
}

:root {
    --text-color: #64748b;
    --bg-color: #f7f7f7;
    --text-color: #474747;
    --light-color: #fff;
    --color: #010101;
    --primary-color: #1e90ff;
    --secondary-color: #000000;
    --dark-color: #212121;
    --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --linear-gradient: linear-gradient(135deg, var(--primary-color) 0%, #0066cc 100%);
    --text-align: justify;
    --text-center: center;
    --red: #dc3545;
    --overlay-color: rgba(67, 97, 238, 0.9);
    --overlay-black: rgba(0, 0, 0, 0.5);
    --contrast-color: #e2e8f0;
    --contrast-blue: #0066cc;
    --b-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
    --about-title: 3.5rem;
    --title: 2.5rem;
    --title-small: 1.4rem;
    --f-size: 16px;
    --f-size-btn: 16px;
    --f-small: 20px;
    --f-small: 14px;
    --f-weight: 400;
    --f-weight-2: 700;
    --f-family: "Open Sans", sans-serif;
    --letter-s: 0.9px;
    --width: 100%;
    --border-radius: 5px;
    --price: 3rem;
    --price-small: 2rem;
    --social-icon: 1.7rem;
    --social-icon-small: 1rem;
    --social-icon-footer: .9rem;
    --top-navbar-i: 0.9rem;
}

.section-title h2 {
    font-size: var(--title);
    font-weight: var(--f-weight-2);
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.section-title p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 16px;
}

.section-title {
    text-align: var(--text-center);
    margin-bottom: 60px;
    padding: 15px;
}

.social-links {
    color: var(--bg-color);
}

h3 {
    margin-top: 25px;
    box-sizing: border-box;
    overflow: hidden;
    text-transform: capitalize;
}

.divider {
    width: 180px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 20px auto;
    border-radius: 2px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: var(--f-size-btn);
    font-weight: var(--f-weight-2);
    color: var(--bg-color);
    background-color: var(--primary-color);
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn:hover {
    background: var(--gradient);
    transform: translateY(-2px);
    color: var(--bg-color)
}

.btn i {
    font-size: var(--f-size-btn);
}

/* DROPDOWN MENU */
.dropdown-menu {
    border: none;
    box-shadow: var(--b-shadow);
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-top: 15px;
    background: var(--bg-color);
    padding: 0 8px;
}

.dropdown-toggle:hover {
    color: var(--gradiente);
}

.dropdown-item {
    padding: 8px 15px;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: var(--gradient);
    color: var(--bg-color);
    transform: translateX(5px);
    border-radius: var(--border-radius);
}

/* WHATSAPP BUTTON */
.whatsapp-button {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    animation: pulse2 2s infinite;
    z-index: 1000;
    margin-left: 80%;
    transform: translateX(-50%);
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5);
}

.whatsapp-button i {
    font-size: 40px;
    color: var(--bg-color);
}

.whatsapp-button::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.5);
    animation: ripple 3s linear infinite;
    z-index: -1;
}

.whatsapp-button::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.3);
    animation: ripple 3s linear infinite 1.5s;
    z-index: -1;
}

@keyframes pulse2 {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* RESPONSIVITY */
@media (min-width: 768px) and (max-width: 992px) {
    .datetime {
        display: none;
    }

    .section-title h2 {
        font-size: var(--title-small);
    }

    .btn {
        display: inline-block;
        padding: 5px 5px;
        font-size: var(--f-small);
    }

    .btn i {
        font-size: var(--f-size-btn);
    }
}

@media (max-width: 768px) {
    .datetime {
        display: none;
    }

    #about .section-title {
        margin-bottom: 80px;
    }

    .section-title h2 {
        font-size: var(--title-small);
    }

    .btn {
        display: inline-block;
        padding: 5px 10px;
    }

    .btn i {
        font-size: var(--f-size-btn);
    }
}