:root {
    --primary-blue: #007bff;
    --dark-blue: #004d66;
    --light-blue: #23BAC6;
    --background-grey: #f0f2f5;
    --text-dark: #333333;
    --text-light: #ffffff;
    --border-blue: #00bcd4;

    --header-nav-link: #ffffff;
    --header-nav-link-hover: #23BAC6;
    --contact-button-bg: #23BAC6;
    --contact-button-text: #ffffff;
    --instagram-icon: #ffffff;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1 {
    font-family: 'DM Sans', sans-serif;
    font-weight: 200;
    font-size: 3rem;
    line-height: 1.2;
}

h2 {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 2.2rem;
    color: var(--dark-blue);
    line-height: 1.3;
}

h3 {
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    font-size: 1.3rem;
}

h4, h5, h6 {
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
}

p {
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    font-size: 1rem;
}

header {
    background-color: transparent;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    pointer-events: none;
}

header * {
    pointer-events: auto;
}

@media (max-width: 767.98px) {
  .container {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }
}

.header-logo {
    height: 45px;
    width: auto;
}

.navbar-nav .nav-link {
    color: #1e4c64;
    font-weight: 500;
    font-size: 1.05rem;
    padding: 0.5rem 1.2rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--header-nav-link-hover) !important;
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.7%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.custom-contact-button {
    background-color: var(--contact-button-bg);
    border-color: var(--contact-button-bg);
    color: var(--contact-button-text) !important;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.custom-contact-button:hover {
    background-color: var(--dark-blue);
    border-color: var(--dark-blue);
}

.social-icon-instagram {
    color: #1e4c64;
    font-size: 1.5rem;
}

.social-icon-instagram:hover {
    color: var(--header-nav-link-hover) !important;
}

.hero-section {
    background: url('principal.jpg') no-repeat center center/cover;
    height: 100vh;
    max-height: 900px;
    position: relative;
    color: #1e4c64;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-section .container-fluid {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-text-col {
    padding-left: 10em;
    padding-right: 20px;
    display: flex;
    flex-direction: column;
    justify-content: left;
    height: 100%;
}



.hero-text-col a.custom-button {
    align-self: flex-start;
}

.custom-button {
    background-color: var(--light-blue);
    border-color: var(--light-blue);
    color: var(--text-light);
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    align: center;
}

.custom-button:hover {
    transform: scale(1.05);
    background-color: var(--dark-blue);
    border-color: var(--dark-blue);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.custom-button:active {
    transform: scale(0.98);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}


@media (max-width: 991.98px) {

    .navbar-collapse,
  .navbar-toggler {
    display: none !important;
  }

    .hero-section {
        min-height: 600px;
        height: auto;
        padding-top: 100px;
        text-align: center;
        flex-direction: column;
        justify-content: flex-start;

    }

    .hero-section .container-fluid {
        flex-direction: column;
        height: auto;
        padding-bottom: 20px;
    }

    .hero-text-col {

    text-align: left;
    align-items: flex-start;
    height: auto;
    justify-content: center;
    padding-left: 30px;
    padding-right: 30px;
    margin-bottom: 20px;
    margin-top: 7rem;
    width: 50%;

    }

    h1 {
        font-size: 2.5rem;
    }

    .hero-image-col {
        height: auto;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: flex-end;
    }

    .hero-gabriela-image {
        position: relative;
        bottom: auto;
        right: auto;
        transform: none;
        max-width: 80%;
        max-height: 450px;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }

    .navbar-collapse {
        background-color: var(--dark-blue);
        border-radius: 8px;
        margin-top: 10px;
        padding: 15px;
    }
    .navbar-nav .nav-link {
        padding: 10px 15px;
    }
    .about-section .row {
        flex-direction: column-reverse;
    }

}

@media (max-width: 767.98px) {

    .hero-text-col {
    width: 65%;
        margin-top: 3rem;

    }

    h1 {
        font-size: 2rem;
    }
    h2 {
        font-size: 1.75rem;
    }
    .hero-section {
        padding-top: 80px;
    }

    .header-logo {
        height: 35px;
    }
    .navbar-nav .nav-link, .custom-contact-button {
        font-size: 0.95rem;
    }
    .highlight-section, .about-section, .services-section, .gallery-section, .final-cta-section, .footer {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .highlight-item, .service-item {
        padding: 20px;
    }
    .footer {
        text-align: center;
    }
    .footer .row > div {
        margin-bottom: 30px;
    }
    .footer-social-icons {
        justify-content: center !important;
    }
}

.highlight-section {
    background-color: #1e4c64;
    color: var(--text-light);
    padding-top: 80px;
    padding-bottom: 80px;
}

.highlight-item {
    padding: 30px;
    transition: background-color 0.3s ease;
}

.highlight-item:hover {
    background-color: #19455c;
}

.highlight-item i {
    color: #32b8c4;
    font-size: 2rem;
    margin-right: 15px;
}

.highlight-item h2 {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 5px !important;
}

.highlight-item p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 0 !important;
}

@media (max-width: 767.98px) {
    .highlight-item {
        text-align: left;
        justify-content: flex-start;
    }
}

.about-section {
    background-color: var(--background-grey);
    padding-top: 80px;
    padding-bottom: 80px;
}

.about-section h2 {
    color: var(--dark-blue);
}

.about-image {
   
    transition: transform 0.3s ease;
}

.about-image:hover {
    transform: translateY(-5px);
}

.services-section {
    background-color: var(--text-light);
    padding-top: 80px;
    padding-bottom: 80px;
}

.services-section h2 {
    color: var(--dark-blue);
}

.service-item {
    border-radius: 10px;
    padding: 25px;
    height: 100%;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.service-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid var(--border-blue);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.service-icon-wrapper i {
    color: var(--border-blue);
    font-size: 2rem;
}

.service-item h3 {
    color: var(--dark-blue);
    font-size: 1.2rem;
    margin-bottom: 5px !important;
}

.service-item p {
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 0 !important;
}

.gallery-section {
    background-color: #359ca4;
    color: var(--text-light);
    padding-top: 80px;
    padding-bottom: 80px;
}

.gallery-section h2 {
    color: var(--text-light);
}

.gallery-section p {
    color: rgba(255, 255, 255, 0.9);
}

.carousel-item img {
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.carousel-indicators [data-bs-target] {
    background-color: var(--text-light);
    opacity: 0.5;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 5px;
}

.carousel-indicators .active {
    opacity: 1;
    background-color: var(--light-blue);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-image: none;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 2rem;
    color: var(--text-light);
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease;
}

.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
    background-color: rgba(0, 0, 0, 0.5);
}

.carousel-control-prev-icon::after {
    content: '\f104';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.carousel-control-next-icon::after {
    content: '\f105';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.final-cta-section {
    background-color: var(--background-grey);
    padding-top: 60px;
    padding-bottom: 60px;
}

.final-cta-section h2 {
    color: var(--dark-blue);
}

.footer {
    background-color: var(--dark-blue);
    color: var(--text-light);
    padding-top: 60px;
    padding-bottom: 30px;
}

.footer h5 {
    color: var(--light-blue);
    margin-bottom: 20px;
}

.footer p, .footer ul li {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-logo {
    width: 80%;
}

.footer-social-icons a {
    color: var(--text-light);
    transition: color 0.3s ease;
}

.footer-social-icons a:hover {
    color: var(--light-blue);
}

.footer hr {
    border-color: rgba(255, 255, 255, 0.1);
}

.footer i{
    color: #32b8c4;
}

.copy p{
    font-size: 12px;
}

a {
  all: unset;
  cursor: pointer; /* Opcional: mantém o cursor de link */
}
