@import "./globals.css";

.hero {
    width: 100%;
    min-height: 100vh;
    background-image: linear-gradient(to right, rgba(128, 128, 128, 0.05) 1px, transparent 1px), linear-gradient(to bottom, rgba(128, 128, 128, 0.05) 1px, transparent 1px);
    background-size: 24px 24px;
    padding-top: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero .hero-content {
    max-width: 750px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.hero .hero-content .hero-subtitle {
    max-width: max-content;
    width: 100%;
    text-align: center;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background-color: rgba(0, 180, 216, 0.1);
    border: 1px solid rgba(0, 180, 216, 0.2);
    font-size: 14px;
    color: var(--color-primary);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero .hero-content .hero-subtitle img {
    width: 18px;
    height: 18px;
}

.hero .hero-content h1 {
    color: #fff;
    font-size: 48px;
    text-align: center;
}

.hero .hero-content h1 span {
    color: var(--color-primary);
}

.hero .hero-content p {
    color: #b7b7b7;
    font-size: 18px;
    text-align: center;
}

.hero .hero-buttons {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.hero .hero-buttons .hero-btn {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 16px;
    border-radius: 6px;
    font-weight: 500;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero .hero-buttons .hero-btn.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-secondary);
}

.hero .hero-buttons .hero-btn.btn-secondary {
    border: 1px solid #424856;
}

@media screen and (min-width: 650px) {

    .hero .hero-content .hero-subtitle {
        font-size: 18px;
    }

    .hero .hero-content h1 {
        font-size: 72px;
    }

    .hero .hero-content p {
        font-size: 21px;
    }

    .hero .hero-buttons {
        max-width: 600px;
        flex-direction: row;
    }
}

/* About */

.about {
    width: 100%;
    padding: 60px 0;
    background-color: #0f172a;
}

.about .container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.about .about-content {
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 1rem;
}

.about .about-content .about-subtitle {
    max-width: max-content;
    width: 100%;
    text-align: center;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background-color: rgba(0, 180, 216, 0.1);
    border: 1px solid rgba(0, 180, 216, 0.2);
    font-size: 14px;
    color: var(--color-primary);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.about .about-content h2 {
    color: #fff;
    font-size: 36px;
    text-align: left;
}

.about .about-content p {
    color: #b7b7b7;
    font-size: 18px;
    text-align: left;
}

.about .about-content p span {
    color: #fff;
}

.about .about-content ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.about .about-content ul li {
    color: #fff;
    font-size: 16px;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.about .about-content ul li .checklist-icon {
    width: 18px;
    height: 18px;
}

.about .about-image {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about .about-image .about-image-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media screen and (min-width: 950px) {
    .about .container {
        flex-direction: row;
    }

    .about .about-image {
        height: 600px;
    }
}


/* Services */

.services {
    width: 100%;
    padding: 60px 0;
    background-color: #0f172a;
}

.services .container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.services .services-content {
    max-width: 750px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.services .services-content .services-subtitle {
    max-width: max-content;
    width: 100%;
    text-align: center;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background-color: rgba(0, 180, 216, 0.1);
    border: 1px solid rgba(0, 180, 216, 0.2);
    font-size: 14px;
    color: var(--color-primary);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.services .services-content h2 {
    color: #fff;
    font-size: 36px;
    text-align: center;
}

.services .services-content p {
    color: #b7b7b7;
    font-size: 18px;
    text-align: center;
}

.services .services-list {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem
}

.services .services-list .services-list-item {
    width: 100%;
    padding: 1.5rem;
    border-radius: 0.5rem;
    background-color: #16213e;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border: 1px solid #424856;
}

.services .services-list .services-list-item .item-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    background-color: rgba(0, 180, 216, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.services .services-list .services-list-item h3 {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 600;
}

.services .services-list .services-list-item p {
    color: #b7b7b7;
    font-size: 14px;
    line-height: 1.75;
}

@media screen and (min-width: 650px) {
    .services .services-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (min-width: 950px) {
    .services .services-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Costumers */

.costumers {
    width: 100%;
    padding: 60px 0;
    background-color: rgba(15, 52, 96, 0.3);
}

.costumers .container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.costumers .costumers-content {
    max-width: 750px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.costumers .costumers-content .costumers-subtitle {
    max-width: max-content;
    width: 100%;
    text-align: center;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background-color: rgba(0, 180, 216, 0.1);
    border: 1px solid rgba(0, 180, 216, 0.2);
    font-size: 14px;
    color: var(--color-primary);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.costumers .costumers-content h2 {
    color: #fff;
    font-size: 36px;
    text-align: center;
}

.costumers .costumers-content p {
    color: #b7b7b7;
    font-size: 18px;
    text-align: center;
}

.costumers .costumers-content p span {
    color: #fff;
}

.costumers .costumers-list {
    width: 100%;
    position: relative;
    padding: 2rem 0 4rem 0;
    overflow: hidden;
}

.costumers .costumers-list .swiper-wrapper {
    display: flex;
    align-items: center;
}

.costumers .costumers-list .costumers-list-item {
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background-color: #fff;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.costumers .costumers-list .costumers-list-item:hover {
    border-color: rgba(0, 180, 216, 0.3);
    transform: translateY(-5px);
}

.costumers .costumers-list .costumers-list-item-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.costumers .costumers-list .costumers-list-item:hover .costumers-list-item-img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Swiper Navigation */
.costumers .costumers-list .swiper-button-prev,
.costumers .costumers-list .swiper-button-next {
    color: var(--color-primary);
    background-color: rgba(0, 180, 216, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(0, 180, 216, 0.3);
}

.costumers .costumers-list .swiper-button-prev:after,
.costumers .costumers-list .swiper-button-next:after {
    font-size: 18px;
    font-weight: 700;
}

.costumers .costumers-list .swiper-button-prev:hover,
.costumers .costumers-list .swiper-button-next:hover {
    background-color: rgba(0, 180, 216, 0.2);
}

.costumers .costumers-list .swiper-button-prev {
    left: 0;
}

.costumers .costumers-list .swiper-button-next {
    right: 0;
}

/* Swiper Pagination */
.costumers .costumers-list .swiper-pagination {
    bottom: 0;
}

.costumers .costumers-list .swiper-pagination-bullet {
    background-color: rgba(255, 255, 255, 0.3);
    opacity: 1;
    width: 10px;
    height: 10px;
    margin: 0 4px;
}

.costumers .costumers-list .swiper-pagination-bullet-active {
    background-color: var(--color-primary);
}

@media screen and (min-width: 768px) {
    .costumers .costumers-list .swiper-button-prev {
        left: -20px;
    }

    .costumers .costumers-list .swiper-button-next {
        right: -20px;
    }
}

/* Contact */

.contact {
    width: 100%;
    padding: 60px 0;
    background-color: #0f172a;
}

.contact .container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.contact .contact-content {
    max-width: 750px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.contact .contact-content .contact-subtitle {
    max-width: max-content;
    width: 100%;
    text-align: center;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background-color: rgba(0, 180, 216, 0.1);
    border: 1px solid rgba(0, 180, 216, 0.2);
    font-size: 14px;
    color: var(--color-primary);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact .contact-content h2 {
    color: #fff;
    font-size: 36px;
    text-align: center;
}

.contact .contact-content p {
    color: #b7b7b7;
    font-size: 18px;
    text-align: center;
}

.contact .contact-methods {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.contact .contact-methods .contact-item {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 0.5rem;
}

.contact .contact-methods .contact-item h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
}

.contact .contact-methods .contact-item p, .contact .contact-methods .contact-item a {
    color: #b7b7b7;
    font-size: 16px;
    font-weight: 400;
}

.contact .contact-methods .contact-item .item-icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 180, 216, 0.1);
    border-radius: 0.5rem;
}

.contact .contact-methods .contact-item .item-icon .item-icon-img { 
    width: 1.5rem;
    height: 1.5rem;
    object-fit: contain;
    object-position: center;
}

.contact .contact-methods .contact-item .item-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

@media screen and (min-width: 650px) {
    .contact .contact-methods {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (min-width: 950px) {
    .contact .contact-methods {
        grid-template-columns: repeat(3, 1fr);
    }
}
