@import url('https://fonts.cdnfonts.com/css/euclid-circular-a');

* {
    font-family: 'Euclid Circular A', sans-serif;
}

body {
    padding-top: 40px; /* Espaço para a top bar */
    font-family: 'Euclid Circular A', sans-serif;
}

/* Top Bar */
.top-bar {
    color: #fff;
    font-size: 12px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
}

.top-bar a {
    color: #fff;
    text-decoration: none;
}

.top-bar i {
    margin-right: 5px;
    color: #007bff;
}

.top-bar-info {
    display: flex;
    gap: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

/* Navbar */
.navbar {
    padding: 10px 0;
    transition: all 0.3s ease;
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    z-index: 1020;
}

.navbar-brand {
    font-size: 24px;
    font-weight: bold;
    color: #0B1B35 !important;
}

.nav-link {
    color: #0B1B35 !important;
    font-weight: 500;
    margin: 0 15px;
    transition: color 0.3s;
    font-size: 15px;
}

.nav-link:hover {
    color: #007bff !important;
}

/* Banner */
.banner {
    height: 100vh;
    position: relative;
}

.banner-static {
    height: 100vh;
    position: relative;
}

.banner-static img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1;
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    width: 100%;
    max-width: 800px;
    padding: 0 20px;
}

.banner-title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.banner-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.btn-discover {
    padding: 15px 30px;
    font-size: 1.2rem;
    background-color: #007bff;
    border: none;
    color: white;
    transition: background-color 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-discover:hover {
    background-color: #0056b3;
    color: white;
}

/* Banner Carousel Navigation */
.banner-carousel .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    z-index: 2;
}

.banner-carousel .owl-nav button {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9) !important;
    border-radius: 50% !important;
}

.banner-carousel .owl-nav button:hover {
    background: #007bff !important;
}

.banner-carousel .owl-nav button i {
    font-size: 20px;
    color: #0B1B35;
}

.banner-carousel .owl-nav button:hover i {
    color: #fff;
}

.banner-carousel .owl-prev {
    left: 20px;
}

.banner-carousel .owl-next {
    right: 20px;
}

/* Presentation Section */
.presentation-section {
    padding: 20px 0;
    background-color: #fff;
    overflow: hidden;
}

.presentation-content {
    padding-left: 30px;
}

.presentation-section .image-wrapper {
    position: relative;
    z-index: 1;
}

.presentation-section .image-wrapper::before {
    content: '';
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 90%;
    height: 90%;
    background: #007bff;
    z-index: -1;
    border-radius: 10px;
}

.image-slider {
    position: relative;
    margin-bottom: 30px;
}

.image-slider .img {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    background: #fff;
}

.image-slider img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
    position: relative;
    z-index: 2;
    border-radius: 10px;
}

/* Remove navigation arrows from presentation slider */
.presentation-section .owl-nav {
    display: none;
}

.presentation-section .owl-dots {
    display: none;
}

.since-text {
    color: #007bff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: block;
    text-transform: uppercase;
}

.presentation-title {
    font-size: 48px;
    color: #007bff;
    font-weight: bold;
    margin-bottom: 30px;
    font-family: 'Euclid Circular A';
}

.presentation-description {
    font-family: 'Euclid Circular A';
    font-size: 15px;
    font-weight: 300;
    line-height: 1.75em;
    color: #6f7b91;
    margin-bottom: 25px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.features-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #6f7b91;
    font-size: 14px;
    font-weight: 300;
}

.features-list li i {
    color: #007bff;
    margin-right: 10px;
    font-size: 14px;
}

.presentation-content .presentation-title {
    font-size: 24px;
    margin: 20px 0;
    color: #0B1B35;
}

.presentation-content .since-text {
    color: #007bff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 30px;
    display: block;
}

.contact-info {
    margin-top: 40px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
}

.contact-label {
    display: block;
    color: #6f7b91;
    font-size: 14px;
    margin-bottom: 10px;
    font-weight: 500;
}

.phone-number {
    color: #0B1B35;
    font-size: 24px;
    font-weight: bold;
    margin: 0;
}

/* Animação do Slider */
@keyframes slideShow {
    0% { opacity: 0; }
    5% { opacity: 1; }
    33% { opacity: 1; }
    38% { opacity: 0; }
    100% { opacity: 0; }
}

.slide {
    animation: slideShow 15s infinite;
}

.slide:nth-child(1) { animation-delay: 0s; }
.slide:nth-child(2) { animation-delay: 5s; }
.slide:nth-child(3) { animation-delay: 10s; }

/* Yachts Section */
.yachts-section {
    padding: 100px 0;
    background-color: #0B1B35;
    color: #fff;
    overflow: hidden;
}

.premium-text {
    color: #007bff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-size: 48px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 50px;
    text-transform: uppercase;
}
.fix-imgQ{
    width: 100%;
    max-height: 394px;
    object-fit: cover;
}
.fix-imgE{ 
    width: 100% !important;
    height: 596px !important;
    object-fit: fill !important;
}
/* Owl Carousel Custom Styles */
/* .yachts-carousel {
    padding: 50px 0;
} */

.yachts-carousel .item {
    position: relative;
    height: 400px;
    transition: all 0.3s ease;
    transform: scale(0.8);
    opacity: 0.5;
}

.yachts-carousel .center .item {
    height: 500px;
    transform: scale(1);
    opacity: 1;
}

.yachts-carousel .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
    border-radius: 10px;
}

.yachts-carousel .info-box {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(11, 27, 53, 0.8);
    padding: 30px;
    color: #fff;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.5s;
    border-radius: 0 0 10px 10px;
}

.yachts-carousel .center .info-box {
    opacity: 1;
    transform: translateY(0);
}

.yachts-carousel .info-box h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.yachts-carousel .info-box .details {
    display: flex;
    gap: 20px;
    font-size: 14px;
}

.yachts-carousel .arrow-link {
    position: absolute;
    right: 30px;
    bottom: 30px;
    width: 45px;
    height: 45px;
    background: #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s;
}

.yachts-carousel .arrow-link:hover {
    background: #fff;
    color: #007bff;
}

/* Owl Nav */
.yachts-carousel .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    margin-top: 0;
}

.yachts-carousel .owl-nav button {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9) !important;
    border-radius: 50% !important;
}

.yachts-carousel .owl-nav button:hover {
    background: #007bff !important;
}

.yachts-carousel .owl-nav button i {
    font-size: 20px;
    color: #0B1B35;
}

.yachts-carousel .owl-nav button:hover i {
    color: #fff;
}

.yachts-carousel .owl-prev {
    left: 50px;
}

.yachts-carousel .owl-next {
    right: 50px;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .yachts-carousel .item,
    .yachts-carousel .center .item {
        height: 400px;
    }
    .yachts-carousel .owl-prev {
        left: 20px;
    }
    .yachts-carousel .owl-next {
        right: 20px;
    }
}

@media (max-width: 768px) {
    .yachts-carousel .item,
    .yachts-carousel .center .item {
        height: 300px;
    }
}

/* Yacht Types Section */
/* .section-padding {
    padding: 100px 0;
} */

.yacht-types-section {
    background-color: #0B1B35;
    color: #fff;
}

.section-subtitle {
    color: #007bff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.section-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 50px;
    color: #fff;
}

.section-title span {
    color: #007bff;
}

.yacht-type-item {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    position: relative;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.yacht-type-item:hover {
    transform: translateY(-5px);
}

.yacht-type-item .number {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 18px;
    color: #007bff;
    font-weight: 500;
    background: rgba(0,123,255,0.1);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.yacht-type-item .icon {
    font-size: 48px;
    color: #007bff;
    margin-bottom: 20px;
}

.yacht-type-item h5 {
    font-size: 22px;
    margin-bottom: 15px;
}

.yacht-type-item h5 a {
    color: #0B1B35;
    text-decoration: none;
    transition: color 0.3s ease;
}

.yacht-type-item h5 a:hover {
    color: #007bff;
}

.yacht-type-item p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.8;
}

.yacht-type-item .arrow {
    position: absolute;
    bottom: 30px;
    right: 30px;
}

.yacht-type-item .arrow a {
    width: 45px;
    height: 45px;
    background: #007bff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.yacht-type-item .arrow a:hover {
    background: #0056b3;
}

.mb-30 {
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .yacht-type-item {
        margin-bottom: 30px;
    }
    
    .section-title {
        font-size: 36px;
    }
}

/* Footer Section */
.footer-section {
    background: #fff;
    padding: 80px 0 30px;
    color: #0B1B35;
}

/* Contact Info Bar */
.contact-info-bar {
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 60px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.icon-circle {
    width: 50px;
    height: 50px;
    background: #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
}

.contact-details h6 {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.contact-details p {
    font-size: 16px;
    color: #0B1B35;
    margin: 0;
    font-weight: 500;
}

/* Main Footer */
.footer-main {
    padding: 40px 0;
    border-bottom: 1px solid #eee;
}

.footer-logo {
    height: 85px;
    border-radius: 5px;
    margin-bottom: 10px;
}

.footer-description {
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #007bff;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #0056b3;
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #0B1B35;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #007bff;
}

h4 {
    color: #0B1B35;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
}

.subscribe-text {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
}

.subscribe-form .input-group {
    border: 1px solid #eee;
    border-radius: 50px;
    overflow: hidden;
}

.subscribe-form .form-control {
    border: none;
    padding: 15px 25px;
    background: #fff;
}

.subscribe-form .form-control:focus {
    box-shadow: none;
}

.btn-send {
    background: #007bff;
    color: #fff;
    border: none;
    padding: 15px 30px;
    transition: background 0.3s ease;
}

.btn-send:hover {
    background: #0056b3;
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 30px;
}

.copyright {
    color: #666;
    margin: 0;
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    z-index: 1000;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    color: #fff;
    background: #128C7E;
}

@media (max-width: 768px) {
    .contact-item {
        margin-bottom: 20px;
    }
    
    .footer-section {
        padding: 50px 0 30px;
    }
}

@media (max-width: 991px) {
    .presentation-content {
        padding-left: 0;
        margin-top: 40px;
    }
}

/* Services Section */
.services-section {
    background-color: #f8f9fa;
    padding: 100px 0;
}

.service-card {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    position: relative;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

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

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(0,123,255,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.service-icon i {
    font-size: 30px;
    color: #007bff;
}

.service-card h3 {
    font-size: 20px;
    color: #0B1B35;
    margin-bottom: 15px;
    font-weight: 600;
    font-family: 'Euclid Circular A';
}

.service-card p {
    font-family: 'Euclid Circular A';
    font-size: 15px;
    font-weight: 300;
    line-height: 1.75em;
    color: #6f7b91;
    margin-bottom: 30px;
}

.service-link {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
}

.service-link:hover {
    background: #0056b3;
    color: #fff;
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }
    
    .service-card {
        margin-bottom: 30px;
    }
}

/* Why Choose Section */
.why-choose-section {
    padding: 80px 0;
}

.why-choose-item {
    padding: 30px;
    transition: all 0.3s ease;
    border-radius: 10px;
    background-color: #ffffff;
}

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

.why-choose-item .icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.why-choose-item h5 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.why-choose-item p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.text-primary {
    color: #0056b3 !important;
}

.bg-white {
    background-color: #ffffff !important;
}

/* Equipment Specs */
.equipment-specs {
    margin-top: 30px;
}

.equipment-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.equipment-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.equipment-title {
    color: #007bff;
    font-size: 1.25rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.equipment-title i {
    font-size: 1.5rem;
}

.specs-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.specs-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #6f7b91;
    font-size: 0.95rem;
}

.specs-list li i {
    color: #007bff;
    font-size: 0.8rem;
}

.specs-list li:last-child {
    margin-bottom: 0;
}

.footer-section p {
    font-size: 14px !important;
    line-height: 1.6;
    margin-bottom: 15px;
    font-weight: 300;
}
.flexClientes{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.cliente-item {
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    border-radius: 5px;
    width: 230px;
    height: 150px;
}

.cliente-item img {
    max-width: 200px;
    height: auto;
}

.cliente-item:hover img {
    transform: scale(1.05);
}

.cliente-dark {
    background-color: #003366;
}

.menuFlex{
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.seafestLogo{
    width: 180px;
}
.textSmall{
    font-size: 10px;
}


/* Mobile Menu Styles */
@media (max-width: 991px) {
    .navbar-toggler {
        display: block;
        border: none;
        padding: 0.25rem 0.75rem;
        font-size: 1.25rem;
        background-color: transparent;
    }

    .navbar-toggler:focus {
        outline: none;
        box-shadow: none;
    }

    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #003366;
        padding: 1rem;
        z-index: 1000;
    }

    .navbar-nav {
        text-align: center;
    }

    .nav-item {
        margin: 0.5rem 0;
    }

    .nav-link {
        display: block;
        padding: 0.5rem 1rem;
    }
}

/* Carousel Styles */
.owl-carousel {
    position: relative;
}

.owl-carousel .owl-item img {
    display: block;
    width: 100%;
    height: auto;
}

.owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    margin-top: 0;
    pointer-events: none;
}

.owl-nav button {
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.5) !important;
    border-radius: 50% !important;
    pointer-events: auto;
}

.owl-nav button:hover {
    background: #003366 !important;
}

.owl-nav button span {
    font-size: 24px;
    color: #003366;
}

.owl-nav button:hover span {
    color: white;
}

.owl-prev {
    left: 20px;
}

.owl-next {
    right: 20px;
}

.owl-dots {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
}

.owl-dot {
    display: inline-block;
    margin: 0 5px;
}

.image-equipamentos{
    max-height: 400px;
    object-fit: cover;
}


.owl-dot span {
    display: block;
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
}

.owl-dot.active span {
    background: #003366;
}

.pl-btn{
    margin-left: 10px;
}

@media (max-width: 768px) {
    nav .container > div {
        flex-direction: column;
        gap: 20px;
    }
    
    nav .container > div > div {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 15px;
    }
    
    nav a {
        padding: 10px;
        text-align: center;
    }
    .flexClientes{
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
}


.video-box {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.youtube-embed {
    width: 100%;
    height: 515px;
    border: none;
    border-radius: 8px;
}
.why-choose-section-fix{
    padding: 0 !important;
}
.ytp-shorts-title-channel{
    display: none !important;
}

@media (max-width: 768px) {
    .youtube-embed {
        height: 250px;
    }
}