/* talky.module.css */
.container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    width: 100%;
    height: 100%;
    background-color: #f8f9fa;
    box-shadow: 0 8px 16px rgba(46, 32, 51, 0.4);
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.messageForm {
    background: linear-gradient(135deg, #6e8efb, #a777e3);
    padding: 40px 30px;
    border-radius: 10px 0 0 10px;
    color: white;
    width: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    animation: slideInFromLeft 1s ease-in-out;
}

@keyframes slideInFromLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.title {
    margin-bottom: 20px;
    color: #FFFFFF;
    animation: fadeIn 1.5s ease-in-out;
}

.infoItem a {
    display: flex;
    align-items: center;
    text-decoration: none; /* Remove underline */
    color: inherit; /* Inherit text color from parent */
}

.infoItem a:hover {
    color: #25D366; /* Change color on hover */
}

.input, .textarea {
    width: calc(100% - 10px);
    padding: 10px;
    margin-bottom: 20px;
    border: none;
    border-bottom: 1px solid rgb(255, 255, 255);
    background-color: transparent;
    font-size: 16px;
    color: white;
    box-sizing: border-box;
    transition: border-bottom 0.3s ease, transform 0.3s ease;
}

.textarea {
    height: 150px;
}

.input:focus, .textarea:focus {
    outline: none;
    border-bottom: 2px solid #FEB500;
}

.input:hover, .textarea:hover {
    transform: scale(1.02);
}

.button {
    background-color: #FEB500;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.button:hover {
    background-color: #e0a800;
    transform: scale(1.05);
}

.contactInfo {
    position: relative; /* Ensure the icon is positioned relative to this container */
    width: 50%;
    padding: 40px 30px;
    background-color: white;
    border-radius: 0 10px 10px 0;
    box-shadow: 0 8px 16px rgba(46, 32, 51, 0.4); /* Increased shadow for more prominence */
    border: 2px solid #222222;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    animation: slideInFromRight 1s ease-in-out;
}

@keyframes slideInFromRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.contactTitle {
    color: #333;
    margin-top: 45px;
    animation: fadeIn 1.5s ease-in-out;
}

.contactInfo p {
    margin-bottom: 40px;
    color: #333;
    animation: fadeIn 1.5s ease-in-out;
}

.infoItem {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    margin-left: 40px;
    animation: fadeInUp 1s ease-in-out;
    transition: transform 0.3s ease, color 0.3s ease;
}

@keyframes fadeInUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.infoItem:hover {
    transform: translateY(-5px);
    color: #ff0076;
}

.contactIconWrapper {
    position: absolute;
    top: -20px; /* Adjust as needed */
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    margin-top: 6%;
}

.contactIcon {
    color: #ff0076; /* Adjust to match your theme */
    transition: transform 0.3s ease;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}
 .conta{
    width: 50px;
    height: 50px;
 }

 .status {
    color: green;
    font-size: 16px;
    transition: opacity 0.5s ease-in-out; /* Smooth transition */
}

.fadeOut {
    opacity: 0;
}


 @media (max-width: 768px) {
    .container {
        width: 100vw;
        height: auto;
        margin: 0 auto;
        flex-direction: column;
    }

    .messageForm, .contactInfo {
        width: 100%;
        border-radius: 0; /* Remove border-radius for full-width elements */
    }

    .contactIconWrapper {
        top: 10px; /* Adjust icon position for smaller screens */
    }
}