@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Light.ttf") format("truetype");
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Medium.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Unbounded";
  src: url("../fonts/Unbounded-ExtraLight.ttf") format("truetype");
  font-weight: 200;
  font-display: swap;
}

@font-face {
  font-family: "Unbounded";
  src: url("../fonts/Unbounded-Light.ttf") format("truetype");
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "Unbounded";
  src: url("../fonts/Unbounded-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Unbounded";
  src: url("../fonts/Unbounded-Medium.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Unbounded";
  src: url("../fonts/Unbounded-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Unbounded";
  src: url("../fonts/Unbounded-Bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Unbounded";
  src: url("../fonts/Unbounded-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-display: swap;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
    overflow-x: hidden;
    font-family: "Montserrat", sans-serif;
    background-size: cover;
        background: #E8EBEE;
}

.grecaptcha-badge { 
    visibility: hidden; 
}

.warning-stating {
    color: rgb(197, 72, 72);
    text-align: center;
    font-style: italic;
    display: flex;
    justify-content: center;
}

.container {
    width: 100%;
    max-width: 1439px;
    margin: 0 auto;
}

@media (min-width: 1025px) and (max-width: 1200px) {
    .container {
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .container {
    }
}


.main-title {
    font-size: clamp(2.5rem, 7vw, 79.99px);
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: clamp(24px, 4vw, 50px);
    font-family: 'Unbounded';
    color: #E8EBEE;
    text-shadow:
        -1px -1px 0 #585858,
        1px -1px 0 #585858,
        -1px  1px 0 #585858,
        1px  1px 0 #585858; 
}



.secondary-title {
    margin-top: clamp(60px, 10vw, 140px);
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    color: #585858;
    text-transform: uppercase;
    font-family: 'Unbounded';
    font-weight: 700;
}
@media (max-width: 767px) {
	.main-title {
		font-size: 1.5rem
	}
	.our-history p {
		font-size: 0.75rem
	}
	.secondary-title {
		font-size: 1rem;
		text-align: center;
	}
}
.btn {
    color: #585858;
    text-transform: uppercase;
    text-align: center;
    font-size: clamp(12px, 2vw, 25px);
    letter-spacing: clamp(4px, 0.8vw, 10px);
    font-weight: 300;
    box-shadow: 2px 2px 10px 0px #00000040;
    background: #E8EBEE;
    height: 84px;
    width: 100%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
}

@media (max-width: 767px) {
    .btn {
        height: 53px;
        white-space: normal;
        word-break: break-word;
        line-height: 1.3;
    }
}

/* FORMULÁRIO MENSAGENS*/ 
.form-message {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-message.loading {
    background-color: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

.field-error {
    border: 2px solid #dc3545 !important;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;
}

.field-error:focus {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;
}

.field-error-message {
    display: block;
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 5px;
    font-weight: 500;
}

.form-message,
.field-error-message {
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-message.loading::after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #0c5460;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
    margin-left: 10px;
    vertical-align: middle;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 768px) {
    .form-message {
        padding: 12px;
        font-size: 0.9rem;
    }

    .title-secondary {
        font-size: 24px !important;
    }

    .button-link {
        width: 70%;
        font-size: 16px;
    }
    
    .field-error-message {
        font-size: 0.8rem;
    }
}


/* ANIMAÇÕES */
.animeStart {
    animation: reveal 1000ms 0ms 1 both;
}

@keyframes reveal {
    0% {
        transform: translate3d(0px, -20px, 0px);
    }
    
    100% {
        transform: none;
    }
}

[data-anime] .toOpacity {
  opacity: 0;
  transition: opacity 0.8s ease;    
}

[data-anime].animation .toOpacity {
  opacity: 1;   
}

[data-anime] .toLeft,
[data-anime] .toRight,
[data-anime] .toTop,
[data-anime] .flip {
  opacity: 0;
  transform: translateX(0) translateY(0);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-anime] .toLeft {
  transform: translateX(-100px);
}

[data-anime] .toRight {
  transform: translateX(100px);
}

[data-anime] .toTop {
  transform: translateY(100px);
}

[data-anime].animation .toLeft,
[data-anime].animation .toRight,
[data-anime].animation .toTop,
[data-anime].animation .flip {
  opacity: 1;
  transform: translateX(0) translateY(0);
}
/* ── Footer ── */
footer {
    position: relative;
    padding: clamp(30px, 5vw, 60px);
    padding-bottom: 0;
    background: #001D29
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: clamp(24px, 4vw, 48px);
}

.footer-left {
    display: flex;
    gap: 40px;
    align-items: center;
}

.social-network {
    display: flex;
    gap: 50px;
    align-items: center;
}

.social-network img {
    width: 24px;
    height: 24px;
    display: block;
}

/* ── Endereço ── */
.footer-address {
    font-style: normal;
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    font-size: clamp(0.75rem, 1.2vw, 0.9rem);
    text-align: right;
    line-height: 1.7;
    text-transform: uppercase;
}

/* ── Copyright — ponta a ponta ── */
.footer-bottom {
    width: 100%;
    padding: clamp(12px, 2vw, 20px) clamp(30px, 5vw, 60px);
    text-align: center;
}

footer a {
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    font-size: clamp(0.75rem, 1vw, 0.875rem);
    text-decoration: none;
    transition: opacity 0.3s ease;
    text-transform: uppercase;
}

footer a:hover  { opacity: 0.75; }
footer a:focus  { outline: 2px solid #fff; outline-offset: 3px; }

/* ── Mobile ── */
@media (max-width: 767px) {
    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .footer-address {
        text-align: center;
    }

    .footer-bottom {
        padding-left: clamp(16px, 4vw, 30px);
        padding-right: clamp(16px, 4vw, 30px);
    }
	footer {
		margin-top: 30px
	}
}

/* arrow scroll */
.arrow-scroll {
    width: 62px;
    height: 62px;
    cursor: pointer;
    position: fixed;
	right: 14px;
    bottom: 140px;;
    z-index: 999999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.arrow-scroll.show {
    opacity: 1;
    visibility: visible;
}

.arrow-scroll::after {
    content: '';
    background: url(../images/arrow-scroll.svg) no-repeat;
    width: 62px;
    height: 62px;
    background-size: 62px;   
    display: block;
    transition: all .5s ease;
}

.arrow-scroll:hover::after {
    content: '';
    background: url(../images/arrow-scroll-hover.svg) no-repeat;
    width: 62px;
    height: 62px;
    background-size: 62px;   
    display: block;
}
