@charset "UTF-8";

/* Global */

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    color: #3C3C3B;
}

.wow {
    visibility: hidden;
}

a {
    color: #63b9e9;
    text-decoration: none;
    transition: all .3s ease;
    opacity: 1;
}

a:hover {
    opacity: .75;
}

a.link-dgray {
    opacity: 1;
    transition: all .3s ease;
    text-decoration: none;
    color: #3C3C3B;
}

a.link-dgray:hover {
    opacity: .75;
    color: #3C3C3B;
}

strong {
    font-weight: 700;
}

section {
    padding: 84px 0;
}

.row {
    --bs-gutter-x: 6rem;
}

/* Header */

header {
    position: relative;
    background: linear-gradient(135deg, rgba(99,185,233,1) 0%,rgba(118,184,42,1) 100%);
}

header::before {
    content: "";
    background-image: url('../img/bg-header.png');
    background-repeat: no-repeat;
    background-position: top right;
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    opacity: .2;
}

.header-content {
    position: relative;
    padding: 60px 0;
}

.header-content h1, .header-content  h2 {
    color: #fff;
    font-weight: 200;
}

.header-content .logo-isg {
    max-height: 160px;
}

/* Buttons */

.btn-outline-primary,
.btn-primary {
    --bs-btn-color: #63b9e9;
    --bs-btn-border-color: #63b9e9;
    --bs-btn-bg: #63b9e9;
    --bs-btn-hover-bg: #4ca3d1;
    --bs-btn-hover-border-color: #4ca3d1;
    --bs-btn-active-bg: #4ca3d1;
    --bs-btn-active-border-color: #4ca3d1;
    --bs-btn-disabled-color: #63b9e9;
    --bs-btn-disabled-border-color: #63b9e9;
    --bs-btn-disabled-bg: #bfe5f7;
}

.btn-outline-success,
.btn-success {
    --bs-btn-color: #76B82A;
    --bs-btn-border-color: #76B82A;
    --bs-btn-bg: #76B82A;
    --bs-btn-hover-bg: #5d961f;
    --bs-btn-hover-border-color: #5d961f;
    --bs-btn-active-bg: #5d961f;
    --bs-btn-active-border-color: #5d961f;
    --bs-btn-disabled-color: #76B82A;
    --bs-btn-disabled-border-color: #76B82A;
    --bs-btn-disabled-bg: #d8eec0;
}

/* Content */

#award-isg {
    background-color: #f5f5f5;
}

#fotos-isg {
    margin-top: 30px;
    margin-bottom: 32px;
}

#form-isg {
    border: 1px solid #76B82A;
    max-width: 556px;
    margin: 0 auto;
}

#form-isg h5 {
    color: #76B82A;
}

#about-isg {
    position: relative;
    color: #fff;
    background: linear-gradient(135deg, rgba(99,185,233,1) 0%,rgba(118,184,42,1) 100%);
}

#about-isg::before {
    content: "";
    background-image: url('../img/bg-header2.png');
    background-repeat: no-repeat;
    background-position: bottom left;
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    opacity: .2;
}

#about-isg a {
    color: #fff;
}

#abest {
    padding: 140px 0 150px 0;
    background-color: #fff;
}

#abest .card {
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 40px;
    text-align: center;
    transition: transform 0.3s ease;
}

#abest .card:hover {
    transform: translateY(-5px);
}

#abest i {
    font-size: 36px;
}

.blockquote {
    max-width: 620px;
    border-left: 3px solid #63b9e9;
    padding-left: 20px;
}

.blockquote-footer {
    margin-top: -0.5rem;
    margin-bottom: 0;
    padding-left: 23px;
}

#btn-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
}

#btn-whatsapp > div {
    width: 60px;
    height: 60px;
    border-radius: 45px;
    background-color: #fff;
    box-shadow: 3px 3px 6px rgba(0, 0, 0, .16);
}

#btn-whatsapp a {
    color: #00A859;
}

/* Team Carousel */
#team-section .carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
}

#team-section .carousel::-webkit-scrollbar {
    display: none;
}

#team-section .carousel-item {
    flex: 0 0 auto;
    scroll-snap-align: start;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

#team-section .carousel-item:hover {
    transform: scale(1.03);
}
