.contact-section {
    background-color: var(--cor-base-claro);
    
    padding-top: 4rem;
    color: var(--preto-texto);
}

.contact-section__content {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-section__header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-section__logo {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--cor-da-marca);
    letter-spacing: -0.02em;
    line-height: 1.1;
    position: relative;
    padding: 0.5rem 0;
    transition: all 0.3s cubic-bezier(.4,0,.2,1);
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 1rem;
}

.contact-section__logo::before {
    content: "";
    position: absolute;
    left: -0.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 70%;
    background: linear-gradient(180deg, var(--cor-da-marca), #FF6100);
    border-radius: 2px;
    opacity: 0.8;
}

.contact-section__logo:hover {
    transform: translateY(-2px);
    text-shadow: 0 4px 8px rgba(0,0,0,0.15);
    color: #FF6100;
}

.contact-section__logo:hover::before {
    opacity: 1;
}

.contact-section__logo span {
    color: var(--preto-texto);
    font-weight: 400;
}

.contact-section__subtitle {
    font-size: 1.2rem;
    color: var(--preto-texto);
    font-weight: 300;
    opacity: 0.8;
}

.contact-section__grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-section__info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-section__highlight {
    background: linear-gradient(135deg, var(--cor-da-marca), #FF6100);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    color: white;
    box-shadow: 0 10px 30px rgba(255, 97, 0, 0.3);
    margin-bottom: 2rem;
}

.contact-section__highlight-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-section__highlight-text {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    line-height: 1.5;
}

.contact-section__highlight-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.contact-section__highlight-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.contact-section__highlight-button:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
    background: linear-gradient(135deg, #128C7E, #075E54);
    border-color: rgba(255, 255, 255, 0.3);
}

.contact-section__highlight-button:hover::before {
    left: 100%;
}

.contact-section__highlight-button:active {
    transform: translateY(-2px) scale(0.98);
}

.contact-section__highlight-button i {
    font-size: 1.4rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.contact-section__links-section {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-section__title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--cor-da-marca);
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-section__links {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.contact-section__link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    text-decoration: none;
    color: var(--preto-texto);
    transition: all 0.3s ease;
    border: 1px solid #d2d5d8;
    font-size: 0.95rem;
}

.contact-section__link:hover {
    background-color: var(--cor-da-marca);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 97, 0, 0.25);
}

.contact-section__link i {
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.contact-section__link[href*="instagram"] i {
    color: #E4405F;
}

.contact-section__link[href*="wa.me"] i {
    color: #25D366;
}

.contact-section__link[href*="mailto"] i {
    color: #007bff;
}

.contact-section__link:hover i {
    color: white;
}

.contact-section__link span {
    font-weight: 400;
}

/* Formulário */
.contact-section__form {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-section__form-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--cor-azulescuro-fundo);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-section__inputs {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-section__input {
    position: relative;
}

.contact-section__input .default__input,
.contact-section__input .textarea__input {
    width: 100%;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: var(--cor-branca-fundo);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-section__input .default__input:focus,
.contact-section__input .textarea__input:focus {
    outline: none;
    border-color: var(--cor-azulescuro-fundo);
    background-color: rgba(255, 255, 255, 0.15);
}

.contact-section__input .default__input::placeholder,
.contact-section__input .textarea__input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.contact-section__input .label__input {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    pointer-events: none;
}

.contact-section__input .default__input:focus + .label__input,
.contact-section__input .default__input:not(:placeholder-shown) + .label__input,
.contact-section__input .textarea__input:focus + .label__input,
.contact-section__input .textarea__input:not(:placeholder-shown) + .label__input {
    top: -0.5rem;
    left: 0.5rem;
    font-size: 0.8rem;
    color: var(--cor-azulescuro-fundo);
    background-color: var(--cor-base-escura);
    padding: 0 0.5rem;
}

.button__submit {
    background-color: var(--cor-azulescuro-fundo);
    color: var(--cor-branca-fundo);
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.button__submit:hover {
    background-color: #1a4a6b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Seção da imagem */
.contact-section__image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    height: 85%;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    min-height: 300px;
}

.contact-section__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
    opacity: 0;
    animation: fadeInImage 0.5s ease-in-out forwards;
}

@keyframes fadeInImage {
    from {
        opacity: 0;
        transform: translateZ(0) scale(1.05);
    }
    to {
        opacity: 1;
        transform: translateZ(0) scale(1);
    }
}



.contact-section__image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 1.5rem;
    text-align: center;
}

.contact-section__image-overlay h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.9);
    letter-spacing: 0.3px;
}

.contact-section__image-overlay p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    font-weight: 400;
    line-height: 1.3;
}

/* Marca d'água no canto superior esquerdo - apenas texto */
.contact-section__watermark {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
    animation: watermarkFadeIn 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(-10px);
    display: none; /* Escondido por padrão */
}

@keyframes watermarkFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-section__watermark span {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--cor-da-marca);
    letter-spacing: -0.02em;
    line-height: 1.1;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}



/* Responsividade */
@media screen and (max-width: 1024px) {
    .contact-section__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-section__logo {
        font-size: 2rem;
    }
    
    .contact-section__highlight {
        padding: 1.5rem;
    }
    
    .contact-section__highlight-title {
        font-size: 1.3rem;
    }
    
    .contact-section__image {
        height: 400px;
        min-height: 350px;
    }
    
    .contact-section__watermark {
        top: 0.8rem;
        right: 0.8rem;
        display: none; /* Ainda escondido no tablet */
    }
    
    .contact-section__watermark span {
        font-size: 1.6rem;
    }
}

@media screen and (max-width: 768px) {
    .contact-section {
        padding: 2rem 0;
    }
    
    .contact-section__header {
        margin-bottom: 1.5rem;
    }
    
    .contact-section__logo {
        font-size: 1.6rem;
    }
    
    .contact-section__subtitle {
        font-size: 1rem;
    }
    
    .contact-section__info {
        gap: 1rem;
    }
    
    .contact-section__link {
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
    }
    
    .contact-section__highlight {
        padding: 1.2rem;
        margin: 0 1rem 1.5rem 1rem;
    }
    
    .contact-section__highlight-title {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .contact-section__highlight-text {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
        line-height: 1.4;
    }
    
    .contact-section__highlight-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        letter-spacing: 0.3px;
    }
    
    .contact-section__highlight-button i {
        font-size: 1.2rem;
    }
    
    .contact-section__title {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }
    
    .contact-section__image {
        height: 350px;
        min-height: 300px;
    }
    
    .contact-section__watermark {
        top: 0.6rem;
        right: 0.6rem;
        display: none; /* Ainda escondido no tablet */
    }
    
    .contact-section__watermark span {
        font-size: 1.4rem;
    }
    
    .contact-section__image-overlay {
        padding: 1.2rem;
    }
    
    .contact-section__image-overlay h4 {
        font-size: 1.1rem;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    }
    
    .contact-section__image-overlay p {
        font-size: 0.9rem;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    }
    
    .contact-section__content {
        padding: 0 1rem;
    }
    
    .contact-section__links-section {
        padding: 0 1rem;
    }
    
    .contact-section__links {
        gap: 0.5rem;
    }
}

@media screen and (max-width: 480px) {
    .contact-section {
        padding: 1.5rem 0;
    }
    
    .contact-section__logo {
        font-size: 1.4rem;
    }
    
    .contact-section__link {
        flex-direction: column;
        text-align: center;
        gap: 0.3rem;
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .contact-section__link i {
        font-size: 1.5rem;
    }
    
    .contact-section__highlight {
        padding: 1rem;
        margin: 0 1.5rem 1.5rem 1.5rem;
    }
    
    .contact-section__highlight-title {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }
    
    .contact-section__highlight-text {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        line-height: 1.3;
    }
    
    .contact-section__highlight-button {
        flex-direction: column;
        gap: 0.4rem;
        text-align: center;
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
        letter-spacing: 0.2px;
    }
    
    .contact-section__highlight-button i {
        font-size: 1.3rem;
    }
    
    .contact-section__title {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .contact-section__content {
        padding: 0 1.5rem;
    }
    
    .contact-section__links-section {
        padding: 0 1.5rem;
    }
    
    .contact-section__image {
        height: 300px;
        min-height: 250px;
        margin: 0 1rem;
    }
    
    .contact-section__watermark {
        top: 0.6rem;
        right: 0.6rem;
        display: block; /* Mostrado apenas no mobile */
    }
    
    .contact-section__watermark span {
        font-size: 1.2rem;
    }
    
    .contact-section__image-overlay {
        padding: 1rem;
    }
    
    .contact-section__image-overlay h4 {
        font-size: 1rem;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
        margin-bottom: 0.3rem;
    }
    
    .contact-section__image-overlay p {
        font-size: 0.85rem;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
        line-height: 1.2;
    }
    
    .contact-section__links {
        gap: 0.4rem;
    }
}
