/* Color Palette - Amarte Brand */
:root {
    --primary-color: #1A2942;      /* Azul Marinho Escuro */
    --secondary-color: #C9997A;    /* Rosa Terracota Premium */
    --accent-color: #C9997A;       /* Rosa Destaque */
    --light-bg: #F5EFE7;           /* Bege/Creme - Background Principal */
    --cream-dark: #EDE5DC;         /* Bege mais escuro */
    --white: #FFFFFF;
    --text-primary: #1A2942;       /* Azul Marinho - Texto Principal */
    --text-light: #5A6B7F;         /* Azul acinzentado */
    --border-color: rgba(201, 153, 122, 0.2);
}

/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Garamond', serif;
    background-color: var(--light-bg);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.8;
}

/* Container */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

/* Gradient Background */
.gradient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--cream-dark) 100%);
    z-index: -1;
}

/* Profile Section */
.profile {
    text-align: center;
    padding: 40px 20px 20px;
    animation: slideDown 0.8s ease-out;
    position: relative;
    z-index: 2;
}

.profile-image {
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

.logo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 4px solid var(--secondary-color);
    padding: 15px;
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0 10px 40px rgba(201, 153, 122, 0.3), inset 0 0 30px rgba(201, 153, 122, 0.2);
    object-fit: contain;
}

.profile-name {
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 5px;
    letter-spacing: 3px;
    font-style: normal;
    display: block;
}

.profile-description {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 20px;
    font-weight: 400;
    font-style: italic;
    display: block;
    letter-spacing: 0.5px;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    position: relative;
    z-index: 3;
}

.social-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(201, 153, 122, 0.15), rgba(26, 41, 66, 0.08));
    border: 3px solid var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.5rem;
}

.social-icon:hover {
    background: linear-gradient(135deg, var(--secondary-color), rgba(201, 153, 122, 0.8));
    color: var(--white);
    transform: translateY(-8px) scale(1.15);
    box-shadow: 0 15px 35px rgba(201, 153, 122, 0.5);
    border-color: var(--secondary-color);
}

/* Links Section */
.links-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
    animation: slideUp 0.8s ease-out 0.2s both;
    position: relative;
    z-index: 2;
}

.link-card {
    background: rgba(255, 255, 255, 0.7);
    border: 2px solid rgba(201, 153, 122, 0.3);
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.link-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    transition: all 0.5s ease;
    opacity: 0;
}

.link-card:hover {
    border-color: var(--secondary-color);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 20px 50px rgba(201, 153, 122, 0.25);
    transform: translateY(-8px);
}

.link-card:hover::before {
    opacity: 1;
    top: -25%;
    right: -25%;
}

.link-card.premium {
    border: 2px solid var(--secondary-color);
    background: linear-gradient(135deg, rgba(201, 153, 122, 0.12), rgba(255, 255, 255, 0.8));
}

.link-card.premium:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 20px 50px rgba(201, 153, 122, 0.35);
}

.link-icon {
    font-size: 3.5rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
    transition: all 0.3s ease;
    opacity: 0.9;
}

.link-card.premium .link-icon {
    color: var(--primary-color);
}

.link-card:hover .link-icon {
    transform: scale(1.2) rotate(10deg);
    color: var(--primary-color);
}

.link-card h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--text-primary);
    font-weight: 500;
}

.link-card p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 15px;
    font-weight: 400;
}

/* Link Button */
.link-button {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--secondary-color), rgba(201, 153, 122, 0.9));
    color: var(--white);
    text-decoration: none;
    border-radius: 25px;
    border: none;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 0.95rem;
    box-shadow: 0 5px 15px rgba(201, 153, 122, 0.3);
    font-family: 'Georgia', serif;
}

.link-card.premium .link-button {
    background: linear-gradient(135deg, var(--secondary-color), rgba(201, 153, 122, 0.85));
}

.link-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 153, 122, 0.4);
}

.link-button:active {
    transform: translateY(0);
}

/* Stats Section */
.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin: 60px 0;
    padding: 40px 0;
    border-top: 2px solid rgba(201, 153, 122, 0.3);
    border-bottom: 2px solid rgba(201, 153, 122, 0.3);
    animation: slideUp 0.8s ease-out 0.4s both;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 5px;
    font-weight: 400;
}

.stat p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Newsletter */
.newsletter {
    background: rgba(255, 255, 255, 0.6);
    border: 2px solid rgba(201, 153, 122, 0.3);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    margin: 40px 0;
    backdrop-filter: blur(10px);
    animation: slideUp 0.8s ease-out 0.6s both;
}

.newsletter h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--text-primary);
    font-weight: 400;
}

.newsletter p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.newsletter-form input {
    flex: 1;
    min-width: 200px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid var(--secondary-color);
    border-radius: 25px;
    color: var(--text-primary);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    font-family: 'Georgia', serif;
}

.newsletter-form input::placeholder {
    color: rgba(26, 41, 66, 0.5);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: rgba(255, 255, 255, 1);
}

.newsletter-form button {
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--secondary-color), rgba(201, 153, 122, 0.9));
    color: var(--white);
    border: none;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(201, 153, 122, 0.3);
    font-family: 'Georgia', serif;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(201, 153, 122, 0.4);
}

/* Footer */
.footer {
    text-align: center;
    padding: 40px 20px 20px;
    border-top: 2px solid rgba(201, 153, 122, 0.3);
    color: var(--text-light);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--text-primary);
    text-decoration: underline;
}

/* Animations */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Responsive - Tablet */
@media (max-width: 768px) {
    .profile {
        padding: 35px 20px 25px;
    }

    .profile-image {
        margin-bottom: 15px;
    }

    .logo {
        width: 140px;
        height: 140px;
        border: 3px solid var(--secondary-color);
    }

    .profile-name {
        font-size: 2.5rem;
        margin-bottom: 5px;
    }

    .profile-description {
        font-size: 1.05rem;
        margin-bottom: 15px;
    }

    .social-links {
        gap: 15px;
        margin-bottom: 25px;
    }

    .social-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .links-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin: 25px 0;
    }

    .link-card {
        padding: 25px 20px;
    }

    .link-card h3 {
        font-size: 1.3rem;
    }

    .link-card p {
        font-size: 0.95rem;
    }

    .link-icon {
        font-size: 3rem;
    }

    .link-button {
        padding: 10px 22px;
        font-size: 0.9rem;
    }

    .stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        margin: 40px 0;
        padding: 30px 0;
    }

    .stat h3 {
        font-size: 1.7rem;
    }

    .stat p {
        font-size: 0.85rem;
    }

    .newsletter {
        padding: 30px 20px;
        margin: 30px 0;
    }

    .newsletter h2 {
        font-size: 1.6rem;
    }

    .newsletter p {
        font-size: 1rem;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 12px;
    }

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
        padding: 12px 15px;
    }

    .footer {
        padding: 30px 20px 15px;
    }

    .footer-links {
        gap: 15px;
    }
}

/* Responsive - Mobile */
@media (max-width: 480px) {
    body {
        line-height: 1.7;
    }

    .container {
        padding: 0 15px;
    }

    .profile {
        padding: 25px 15px 20px;
    }

    .profile-image {
        margin-bottom: 12px;
    }

    .logo {
        width: 120px;
        height: 120px;
        border: 3px solid var(--secondary-color);
        padding: 10px;
    }

    .profile-name {
        font-size: 2rem;
        margin-bottom: 3px;
        letter-spacing: 1px;
    }

    .profile-description {
        font-size: 1rem;
        margin-bottom: 12px;
    }

    .social-links {
        gap: 12px;
        margin-bottom: 20px;
    }

    .social-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .links-section {
        grid-template-columns: 1fr;
        gap: 12px;
        margin: 20px 0;
    }

    .link-card {
        padding: 20px 15px;
        border-radius: 15px;
    }

    .link-card h3 {
        font-size: 1.2rem;
        margin-bottom: 6px;
    }

    .link-card p {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }

    .link-icon {
        font-size: 2.8rem;
        margin-bottom: 10px;
    }

    .link-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 12px;
        margin: 30px 0;
        padding: 25px 0;
    }

    .stat {
        padding: 15px 0;
    }

    .stat h3 {
        font-size: 1.5rem;
        margin-bottom: 3px;
    }

    .stat p {
        font-size: 0.85rem;
    }

    .newsletter {
        padding: 25px 15px;
        margin: 25px 0;
        border-radius: 15px;
    }

    .newsletter h2 {
        font-size: 1.4rem;
        margin-bottom: 8px;
    }

    .newsletter p {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 10px;
    }

    .newsletter-form input {
        padding: 11px 12px;
        font-size: 16px;
        border-radius: 20px;
    }

    .newsletter-form button {
        padding: 11px 12px;
        font-size: 0.9rem;
        border-radius: 20px;
    }

    .footer {
        padding: 25px 15px 12px;
        font-size: 0.85rem;
    }

    .footer-links {
        gap: 12px;
        margin-top: 10px;
        flex-direction: column;
    }

    .footer-links a {
        display: block;
    }
}

/* Modal Contato */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 41, 66, 0.5);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: var(--light-bg);
    padding: 40px;
    border: 2px solid var(--secondary-color);
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(201, 153, 122, 0.3);
    animation: slideUp 0.3s ease;
    position: relative;
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 28px;
    font-weight: bold;
    color: var(--secondary-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.close:hover {
    color: var(--text-primary);
    transform: scale(1.2);
}

.modal-content h2 {
    color: var(--text-primary);
    margin-bottom: 8px;
    font-size: 1.8rem;
    font-weight: 400;
}

.modal-subtitle {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 0.95rem;
    font-style: italic;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 6px;
    font-size: 0.95rem;
}

.form-group input,
.form-group select {
    padding: 12px 15px;
    border: 2px solid var(--secondary-color);
    border-radius: 10px;
    font-family: 'Georgia', serif;
    color: var(--text-primary);
    background-color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary-color);
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0 0 0 3px rgba(201, 153, 122, 0.1);
}

.form-group input::placeholder {
    color: rgba(26, 41, 66, 0.5);
}

.btn-submit {
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--secondary-color), rgba(201, 153, 122, 0.9));
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Georgia', serif;
    margin-top: 10px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 153, 122, 0.4);
}

.btn-submit:active {
    transform: translateY(0);
}

.success-message {
    text-align: center;
    padding: 25px;
    background: rgba(201, 153, 122, 0.1);
    border: 2px solid var(--secondary-color);
    border-radius: 10px;
    margin-top: 15px;
}

.success-message h3 {
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.success-message p {
    color: var(--text-light);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
    .profile-name {
        font-size: 1.8rem;
        letter-spacing: 0.5px;
    }

    .logo {
        width: 100px;
        height: 100px;
    }

    .link-card {
        padding: 15px 12px;
    }

    .link-card h3 {
        font-size: 1.1rem;
    }

    .link-icon {
        font-size: 2.5rem;
    }

    .link-button {
        padding: 9px 18px;
        font-size: 0.85rem;
    }

    .stat h3 {
        font-size: 1.3rem;
    }

    .modal-content {
        padding: 25px 20px;
        margin: 0 10px;
    }

    .modal-content h2 {
        font-size: 1.4rem;
    }

    .form-group input,
    .form-group select {
        padding: 10px 12px;
        font-size: 16px;
    }

    .btn-submit {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}
